mirror of
https://github.com/actualbudget/actual.git
synced 2026-06-09 23:26:51 -05:00
* [AI] Replace mechanical agent rules with shared agent hooks + nano-staged Move the mechanical "remember to run X" rules out of AGENTS.md and the agent guidance docs into deterministic, cross-agent hooks, and migrate the pre-commit runner from lint-staged to nano-staged. - Add shared hook scripts in scripts/agent-hooks/ (git-guard, format-edited-file, no-strict-ignore-new-file, prefer-one-component, check-on-stop, common helpers) wired for Claude (.claude/settings.json), Codex (.codex/config.toml), and Cursor (.cursor/hooks.json + adapters). - Enforce "avoid enum" via a new actual/no-enum lint rule, grandfathering the two existing declarations in .oxlintrc.json overrides. - Migrate lint-staged -> nano-staged (.nano-staged.json, .husky/pre-commit, package.json). - Trim AGENTS.md, .github/agents/pr-and-commit-rules.md, the Cursor rule, and the committing skill down to the rules that aren't auto-enforced. - Add release note 8089.md. * [AI] Align PR-title wording in AGENTS.md with canonical rules * [AI] Fix check-on-stop hook on bash 3.2 and TSV column collapse The Stop hook silently no-op'd in two ways: - `declare -A` isn't supported on stock macOS bash 3.2, and the slash/hyphen path subscript aborted under `set -u`. Dedupe via a space-padded string match instead. - jq emitted an empty middle TSV field for a package with test but no typecheck; tab is IFS-whitespace so `read` collapsed it and shifted the columns (eslint-plugin-actual then ran neither). Emit non-empty sentinels (-, yes/no) so no field can collapse. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
16 lines
558 B
Bash
16 lines
558 B
Bash
#!/bin/sh
|
|
# Shared helpers for the agent-hook scripts. Source this file; don't execute it.
|
|
|
|
# Resolve the repo root regardless of which agent invoked the hook.
|
|
# Optional $1: a directory hint for the `git` fallback (e.g. an edited file's dir).
|
|
resolve_repo_root() {
|
|
if [ -n "${CLAUDE_PROJECT_DIR:-}" ]; then
|
|
printf '%s\n' "$CLAUDE_PROJECT_DIR"
|
|
return 0
|
|
fi
|
|
_hint=${1:-.}
|
|
_root=$(git -C "$_hint" rev-parse --show-toplevel 2>/dev/null) || _root=
|
|
[ -n "$_root" ] || _root=$(CDPATH= cd "$(dirname "$0")/../.." && pwd)
|
|
printf '%s\n' "$_root"
|
|
}
|