Skip to content

Commit 085954b

Browse files
authored
docs: rename gitagent CLI command references to gapman (#74)
The CLI binary was renamed gitagent → gapman in v0.3.0, with gitagent kept as an alias. This sweep updates all command-line examples in docs and example READMEs to use the canonical 'gapman' invocation. - README.md, docs.md, CONTRIBUTING.md - spec/SPECIFICATION.md - docs/comparison.md, docs/adapters/gemini.md - examples/gitagent-helper/, examples/lyzr-agent/, examples/nvidia-deep-researcher/, examples/jason-my-claw-is-the-law-deebee-4567b4/ - .github/ISSUE_TEMPLATE/bug_report.md - @shreyaskapale/gitagent (deprecated) and @open-gitagent/gitagent (renamed) install commands updated to @open-gitagent/gapman The gitagent alias still works at runtime — backward-compat notes preserved. Project / protocol / repo names ("gitagent", "open-gitagent/gitagent-protocol") are unchanged; only CLI invocations and npm package names were rewritten.
1 parent 95fb642 commit 085954b

19 files changed

Lines changed: 216 additions & 216 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A clear and concise description of the bug.
1212
## Environment
1313
- **OS**: (e.g., macOS 14, Ubuntu 22.04, Windows 11)
1414
- **Node.js version**: (e.g., 18.19.0)
15-
- **gitagent version**: (run `gitagent --version`)
15+
- **gapman version**: (run `gapman --version`)
1616
- **Adapter** (if applicable): (e.g., claude-code, openai, crewai)
1717

1818
## Steps to Reproduce

CONTRIBUTING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ Recompiles on file changes. You still need to re-run the command manually.
5555
src/
5656
├── index.ts # CLI entry point (Commander.js)
5757
├── commands/ # One file per CLI command
58-
│ ├── run.ts # gitagent run
59-
│ ├── init.ts # gitagent init
60-
│ ├── validate.ts # gitagent validate
61-
│ ├── export.ts # gitagent export
62-
│ ├── import.ts # gitagent import
63-
│ ├── audit.ts # gitagent audit
64-
│ ├── skills.ts # gitagent skills
65-
│ ├── install.ts # gitagent install
66-
│ ├── info.ts # gitagent info
67-
│ └── lyzr.ts # gitagent lyzr
58+
│ ├── run.ts # gapman run
59+
│ ├── init.ts # gapman init
60+
│ ├── validate.ts # gapman validate
61+
│ ├── export.ts # gapman export
62+
│ ├── import.ts # gapman import
63+
│ ├── audit.ts # gapman audit
64+
│ ├── skills.ts # gapman skills
65+
│ ├── install.ts # gapman install
66+
│ ├── info.ts # gapman info
67+
│ └── lyzr.ts # gapman lyzr
6868
├── runners/ # Runtime adapters (execute agents)
6969
│ ├── claude.ts # Claude Code runner
7070
│ ├── openai.ts # OpenAI Agents SDK runner

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Fork any public agent repo, customize its `SOUL.md`, add your own skills, and PR
136136
<img src="patterns/agent-forking.png" alt="Agent Forking & Remixing" width="600" />
137137

138138
### CI/CD for Agents
139-
Run `gitagent validate` on every push via GitHub Actions. Test agent behavior in CI, block bad merges, and auto-deploy — treat agent quality like code quality.
139+
Run `gapman validate` on every push via GitHub Actions. Test agent behavior in CI, block bad merges, and auto-deploy — treat agent quality like code quality.
140140

141141
<img src="patterns/ci-cd-agents.png" alt="CI/CD for Agents" width="600" />
142142

@@ -216,7 +216,7 @@ This pattern is demonstrated with [NVIDIA's AIQ Deep Researcher](https://github.
216216

217217
- **Fork for a new domain** — edit `SOUL.md` for legal/medical/finance research without touching Python
218218
- **Version prompts independently** — `git diff` when the orchestrator's style regresses
219-
- **Validate SOD** — `gitagent validate --compliance` ensures the orchestrator can't also be the researcher
219+
- **Validate SOD** — `gapman validate --compliance` ensures the orchestrator can't also be the researcher
220220
- **Export to other runtimes** — same identity on Claude Code, OpenAI, or as a raw system prompt
221221

222222
```
@@ -347,7 +347,7 @@ gitagent has first-class support for financial regulatory compliance:
347347

348348
Inspired by [Salient AI](https://www.trysalient.com/)'s purpose-built agent architecture and the [FINOS AI Governance Framework](https://air-governance-framework.finos.org/mitigations/mi-22_multi-agent-isolation-and-segmentation.html).
349349

350-
Run `gitagent audit` for a full compliance checklist against your agent configuration.
350+
Run `gapman audit` for a full compliance checklist against your agent configuration.
351351

352352
## Adapters
353353

0 commit comments

Comments
 (0)