Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A clear and concise description of the bug.
## Environment
- **OS**: (e.g., macOS 14, Ubuntu 22.04, Windows 11)
- **Node.js version**: (e.g., 18.19.0)
- **gitagent version**: (run `gitagent --version`)
- **gapman version**: (run `gapman --version`)
- **Adapter** (if applicable): (e.g., claude-code, openai, crewai)

## Steps to Reproduce
Expand Down
20 changes: 10 additions & 10 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ Recompiles on file changes. You still need to re-run the command manually.
src/
├── index.ts # CLI entry point (Commander.js)
├── commands/ # One file per CLI command
│ ├── run.ts # gitagent run
│ ├── init.ts # gitagent init
│ ├── validate.ts # gitagent validate
│ ├── export.ts # gitagent export
│ ├── import.ts # gitagent import
│ ├── audit.ts # gitagent audit
│ ├── skills.ts # gitagent skills
│ ├── install.ts # gitagent install
│ ├── info.ts # gitagent info
│ └── lyzr.ts # gitagent lyzr
│ ├── run.ts # gapman run
│ ├── init.ts # gapman init
│ ├── validate.ts # gapman validate
│ ├── export.ts # gapman export
│ ├── import.ts # gapman import
│ ├── audit.ts # gapman audit
│ ├── skills.ts # gapman skills
│ ├── install.ts # gapman install
│ ├── info.ts # gapman info
│ └── lyzr.ts # gapman lyzr
├── runners/ # Runtime adapters (execute agents)
│ ├── claude.ts # Claude Code runner
│ ├── openai.ts # OpenAI Agents SDK runner
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Fork any public agent repo, customize its `SOUL.md`, add your own skills, and PR
<img src="patterns/agent-forking.png" alt="Agent Forking & Remixing" width="600" />

### CI/CD for Agents
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.
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.

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

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

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

```
Expand Down Expand Up @@ -347,7 +347,7 @@ gitagent has first-class support for financial regulatory compliance:

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).

Run `gitagent audit` for a full compliance checklist against your agent configuration.
Run `gapman audit` for a full compliance checklist against your agent configuration.

## Adapters

Expand Down
Loading
Loading