Customization Overview

Pick a customization path

Make AIWG Yours

Prompt-first procedure: Describe the outcome you want in your agent conversation. The agent should select and load the appropriate AIWG assets, explain material changes, request any needed approval, and report verification evidence. Exact commands and flags appear only in the CLI reference.

Three paths, depending on what you're customizing and how you want it shared.

PathWhenEffortShareable?
A — Project-localPer-project rules, agents, skills5 minutes — no forkNo (lives in your project)
B — ForkCross-project customization, contributing back30 minutes — fork + dev modeYes (PR upstream)
C — CorpusCross-project sharing without going publicOne-time setup per corpusWithin your team / org

If unsure, start with Path A. It's the lowest commitment and the easiest to graduate later.


Author bundles directly inside your project under `.aiwg/{type}/{name}/`. No fork, no clone, no rebuild — just files in your repo. Discovered automatically by the agent-owned use operation.

Use AIWG to complete this documented outcome: Author bundles directly inside your project under .aiwg/{type}/{name}/. No fork, no clone, no rebuild — just files in your repo. Discovered automatically by the agent-owned use operation.
Have it inspect the current state, explain the plan, ask before material
changes, and report the result with verification evidence.

The bundle deploys alongside upstream artifacts to whatever providers your project targets (`.claude/`, `.cursor/`, `.codex/`, etc.). It shadows upstream artifacts with the same id, with safety-critical denylist enforcement so you can't accidentally override the wrong thing.

Graduate to upstream or to a private corpus when ready:

Use AIWG to complete this documented outcome: Graduate to upstream or to a private corpus when ready
Have it inspect the current state, explain the plan, ask before material
changes, and report the result with verification evidence.

The graduate operation is a hash-verified copy — no rewrite, no migration (identical-form ADR).

See:


Path B — Fork (for upstream contributions)

When you're building something you might contribute to AIWG itself, or you want to live on the bleeding edge with custom branches, fork AIWG on GitHub and run in dev mode. The Steward agent handles the setup.

"Set up AIWG customization mode for me — I want to fork and contribute back"

What you get:

  • Your own copy of AIWG on GitHub that you control
  • Upstream sync via `"sync my AIWG"` — pulls new releases without overwriting your edits
  • One command to PR a change back upstream

Use Path B when:

  • You're modifying AIWG core (TypeScript source, build scripts, deploy pipeline)
  • Your customization is generally useful and you want it merged
  • You want bleeding-edge AIWG features before they're released

If you're "just" customizing rules / skills / agents, Path A is simpler — you can always graduate to Path B later by promoting your project-local bundles to upstream and PRing them.

See: Fork workflow — how the fork/upstream sync works under the hood.


Path C — Corpus (cross-project sharing)

When you have customizations to share across many of your own projects without making them public:

1. Create a corpus directory: `mkdir ~/my-corpus` 2. Author bundles there directly, or promote project-local bundles into it:

Use AIWG to complete this documented outcome: 1. Create a corpus directory: mkdir ~/my-corpus 2. Author bundles there directly, or promote project-local bundles into it
Have it inspect the current state, explain the plan, ask before material
changes, and report the result with verification evidence.

3. Other projects pick up corpus bundles via `aiwg.config` registration (set `source: 'corpus'` paths in the project's installed config)

The corpus is byte-identical to both project-local and upstream forms — same manifest, same layout — so a bundle moves between any of the three locations by copy.

Use Path C when:

  • You have several private repos that all need the same customizations
  • The customization isn't public-marketplace-suitable but it isn't

per-project either

  • You want versioned, audited shared bundles without managing your own

AIWG fork


Decision tree

Are you modifying AIWG core (TS source, build, deploy pipeline)?
│
├─ Yes ──→ Path B (fork)
│
└─ No ──→ Are you sharing this across many of your projects?
          │
          ├─ Yes, privately ──→ Path C (corpus)
          ├─ Yes, publicly ──→ Path A first, then the agent-owned promote operation → Path B
          └─ No, single project ──→ Path A (project-local)

Mixing paths

The three paths compose:

  • A project on Path A can later promote a bundle to upstream (Path B) or

to a corpus (Path C).

  • A Path B fork can deploy alongside Path A project-local bundles —

the project's `.aiwg/extensions/foo/` shadows the fork's `agentic/code/addons/foo/` cleanly.

  • A corpus (Path C) is just another `source` in the registry — your

project pulls bundled, project-local, and corpus artifacts together.

You don't have to commit to one path forever. Start where you are; move when you outgrow it.


Quick reference

You want to...Use
Add one rule for one projectthe agent-owned new-bundle operation (Path A)
Add a feature pack of related skillsthe agent-owned new-bundle operation (Path A)
Share customizations across your repos privatelythe agent-owned promote operation (Path C)
Contribute a customization back to AIWGthe agent-owned promote operation (Path A → Path B + PR)
Modify AIWG itself (CLI, deploy, build)Steward sets up a fork (Path B)

Next steps