aiwg
Version:
Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo
41 lines (27 loc) • 1.5 kB
Markdown
# AIWG Framework Context
Framework for AI-augmented software development with structured agents, workflows, and artifact management.
## Active Framework
SDLC Complete — agents, commands, skills, and rules for full lifecycle coverage.
## Key Commands
- `aiwg status` — Show workspace health
- `aiwg use sdlc --provider opencode` — Deploy SDLC framework for OpenCode
- `aiwg new-bundle <name> --type extension` — Scaffold a project-local bundle
- `aiwg doctor --project-local` — Health check project-local artifacts
- `aiwg promote <name>` — Graduate project-local bundle to upstream
## Customize Per Project
Author project-specific rules, skills, agents, addons, or frameworks under `.aiwg/{extensions,addons,frameworks,plugins}/<name>/`. Discovered automatically by `aiwg use`.
```bash
aiwg new-bundle my-rules --type extension --starter rule
aiwg use my-rules
aiwg doctor --project-local
aiwg promote my-rules # graduate to upstream
aiwg promote my-rules --to corpus ~/my-corpus/ # or to private corpus
```
The bundle is byte-identical in shape to its upstream form, so `aiwg promote` is a hash-verified copy with no rewrite. See `docs/customization/README.md` for Path A (project-local), B (fork), C (corpus).
## Artifacts
All SDLC artifacts stored in `.aiwg/`.
## Rules
- No AI attribution in commits, PRs, or code
- CalVer versioning: YYYY.M.PATCH (no leading zeros)
- Never delete tests to make them pass
- Execute tests before returning code