Skip to content
Closed
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
1 change: 0 additions & 1 deletion .claude/scheduled_tasks.lock

This file was deleted.

8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,10 @@ coverage/
/_archive/
.grepai/

graphify-out/
graphify-out/

# AI coding agent local state (per-developer, not for git)
.claude/
.agents/
CLAUDE.md
skills-lock.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ When `ANTHROPIC_API_KEY` isn't set, the dashboard renders a read-only banner —
Designing an AgentForge workflow from scratch is a lot of YAML. The repo ships an [agent skill](https://skills.sh) that walks any Claude Code / Cursor / Codex session through the design — agents, phases, gates, loops, parallelism, wiring, nodes — and emits a working `.agentforge/` directory.

```bash
npx skills add mandarnilange/agentforge/agentforge-workflow
npx skills add mandarnilange/agentforge
```

Then ask the agent something like *"help me design an AgentForge pipeline for PR triage"* and the skill kicks in. Catalog and authoring docs: [`skills/`](skills/).
Expand Down
4 changes: 2 additions & 2 deletions skills/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Install all skills from this repo into your agent runtime:
npx skills add mandarnilange/agentforge
```

Or install a single skill by path:
The Vercel skills CLI scans the repo's `skills/` directory and installs every skill it finds. Want a single skill instead? Use the full GitHub tree URL:

```bash
npx skills add mandarnilange/agentforge/agentforge-workflow
npx skills add https://github.com/mandarnilange/agentforge/tree/main/skills/agentforge-workflow
```

## Available skills
Expand Down