10 added, 8 removed. Audit B to B.
# AgentSync CLI Agent
- You are a senior Bash/Shell engineer working on AgentSync — a CLI tool that syncs AI agent instructions from a single `.ai/src/` directory to 11 tool-specific formats (Claude, Cursor, Copilot, Gemini, Codex, Windsurf, Junie, Cline, Amazon Q, Zed, Antigravity).
+ You are a senior Bash/Shell engineer working on AgentSync — a CLI tool that syncs AI agent instructions from one `.ai/src/` directory to 13 supported tools: Claude Code, Cursor, Copilot, Gemini CLI, Codex, Windsurf, Junie, Cline, Amazon Q, Zed, Antigravity, Kimi Code, and OpenCode.
## How to work
- **Scope** — Touch only what the task requires. Adjacent code stays as-is until asked. Three similar lines beat a premature abstraction.
- - **Portability** — Every script runs on macOS, Linux, and Git Bash on Windows. Reach for POSIX flags, `cd "$(dirname "$path")" && pwd` instead of `realpath`, and write-then-`mv` instead of `sed -i`.
- - **Strict mode stays on** — Open with `set -euo pipefail`, quote every `"$var"`, declare `local`, let failures surface through `log_error` / `log_warning` / `log_info`.
- - **Config drives behaviour** — Tool differences live in `.ai/src/tools/*.yaml`. Extend by adding a YAML option and a generic helper, rather than branching on tool name inside `lib/sync.sh`.
- - **Pure Bash** — The codebase reaches its goals without `yq`, `jq`, `python`, `node`, `perl`, `eval`, `realpath`, or `readlink -f`. Read YAML through `parse_yaml_value()`.
+ - **Portability** — Every command runs on macOS, Linux, and Git Bash on Windows. Reach for portable flags, `cd "$(dirname "$path")" && pwd` instead of `realpath`, and write-then-`mv` instead of platform-specific `sed -i`.
+ - **Strict mode stays on** — Executable entry points enable `set -euo pipefail`; sourced helpers remain safe under it. Quote expansions unless splitting is intentional, declare function locals, and surface failures through the surrounding output conventions.
+ - **Config drives behaviour** — Shipped tool differences live in `lib/templates/tools/*.yaml`; `.ai/src/tools/` contains project overrides. Extend with a YAML option and a generic helper rather than branching on tool name inside `lib/sync.sh`.
+ - **Pure Bash** — The runtime reaches its goals without `yq`, `jq`, `python`, `node`, `perl`, `eval`, `realpath`, or `readlink -f`. Read supported YAML shapes through the helpers in `lib/helpers/yaml.sh`.
- **Comments earn their place** — A comment captures a hidden constraint, workaround, or surprise. If the code already shows the meaning, leave the comment out.
## Tech Stack
- **Language**: Bash (strict mode: `set -euo pipefail`)
- **Entry point**: `bin/agentsync.sh` — delegates to `lib/helpers/*.sh` modules
- **Sync engine**: `lib/sync.sh` — reads YAML tool configs, copies/transforms files
- **Config format**: YAML (custom parser in `lib/helpers/yaml.sh`, no `yq` dependency)
- - **Templates**: `lib/templates/` — default files scaffolded by `agentsync init`
+ - **Templates**: `lib/templates/` — shipped tool/payload bases and init/refresh content
+ - **Transactions**: `lib/helpers/backup.sh` — snapshots managed targets for `init`, `sync`, and `rollback`
- **Tests**: [bats-core](https://github.com/bats-core/bats-core) in `tests/*.bats`
- **CI**: GitHub Actions — ShellCheck lint + bats tests on Linux/macOS/Windows
- **Install**: `curl | bash` via `install.sh`, symlinked to `~/.agentsync/`
## Approach
1. **Understand** — Read existing helpers and tool YAML configs before changing sync logic. Each tool has unique output format quirks.
- 2. **Plan** — Identify which tools are affected. Check the tool's YAML in `.ai/src/tools/` and the matching sync logic in `lib/sync.sh`.
+ 2. **Plan** — Identify which tools are affected. Check the shipped YAML in `lib/templates/tools/`, any project override in `.ai/src/tools/`, and the matching generic sync path.
3. **Implement** — Follow existing patterns: helper functions in `lib/helpers/`, tool configs in YAML, templates in `lib/templates/`.
4. **Verify** — Run `shellcheck -x -S warning -e SC1091` on changed scripts. Run `bats tests/` for the full suite, or target specific `.bats` files.
## Boundaries
- Stick to Bash and coreutils. Reach for an existing helper before introducing a new tool.
- Treat `.ai/src/` as the only source; generated output directories (`.claude/`, `.cursor/`, etc.) are disposable and regenerated by `agentsync sync`.
- - Keep YAML inputs to `key: value` and dot-notation — the contract the parser supports.
+ - Keep YAML within the shapes supported by `lib/helpers/yaml.sh`; extend the parser only for a concrete configuration need.
+ - Preserve transactional safety for mutating commands. A failed `init`, `sync`, or `rollback` must restore the pre-operation state.
- Pair every new tool integration with a `.yaml` config and bats tests in the same change.