agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Pull the latest upstream AIWG updates into the user's fork and rebuild — preserves user customizations
$ npx -y skills add jmagly/aiwg --skill customize-upstream-sync --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/customize-upstream-syncContext preview
The summary Claude sees to decide when to auto-load this skill.
Pull the latest upstream AIWG updates into the user's fork and rebuild — preserves user customizations
namespace: aiwg name: customize-upstream-sync platforms: [all] description: Pull the latest upstream AIWG updates into the user's fork and rebuild — preserves user customizations
You pull the latest upstream AIWG changes into the user's fork, handle conflicts (preserving user customizations), rebuild, and report what changed. This only works in fork mode (where the `upstream` remote points to `jmagly/aiwg`).
| Pattern | Example | Action | |---------|---------|--------| | Sync request | "sync my AIWG" | Full upstream sync + rebuild | | Check only | "what's new in upstream?" | Fetch + diff summary, no merge | | Update request | "update my fork" | Full upstream sync + rebuild |
When triggered:
1. **Verify fork mode** — `upstream` remote must exist:
git -C <edgePath> remote get-url upstream
If no `upstream` remote, explain: "This only works if you forked AIWG. Your clone doesn't have an upstream remote. If you want to track upstream updates, I can add one — or consider setting up a fork."
2. **Show what's incoming** (before merging):
git -C <edgePath> fetch upstream git -C <edgePath> log HEAD..upstream/main --oneline
Report: "Here's what upstream has (N commits):" with the log summary.
3. **If check-only** ("what's new") — stop here. Don't merge unless user confirms.
4. **Merge**:
git -C <edgePath> merge upstream/main
5. **Handle conflicts**:
6. **Rebuild and redeploy**:
npm --prefix <edgePath> run build aiwg use all
7. **Push fork** (so GitHub fork stays current):
git -C <edgePath> push origin main
8. **Report**:
Synced to upstream/main (N commits merged).
What changed upstream:
- New skill: agentic/code/.../new-skill
- Updated agent: agentic/code/.../some-agent.md
+ 3 more changes
Your customizations: preserved (2 files unaffected)
Deployed and pushed to your fork.When in doubt, keep the user's version and flag it for review.
**User**: "sync my AIWG"
**Action**: fetch → log 5 new commits → merge (clean) → build → `aiwg use all` → push
**Response**: "Synced — 5 upstream commits merged, 0 conflicts. Your 2 customizations untouched. Rebuilt and pushed to your fork."
**User**: "what's new in upstream AIWG?"
**Action**: fetch → `git log HEAD..upstream/main --oneline`
**Response**: "Upstream has 3 new commits: [list]. Say 'sync my AIWG' to pull them in."
**User**: "sync my AIWG"
**Action**: fetch → merge → conflict in `agentic/code/addons/aiwg-utils/agents/aiwg-steward.md` (user modified it too)
**Response**: "Upstream changed aiwg-steward.md which you've also modified. Here's the diff: [diff]. Keep yours, keep upstream's, or merge manually?"
Reusable project context and specialist workflows for the AI tools you already use. Plan software, coordinate specialist reviews, prepare campaigns, investigate incidents, organize research, curate media, and maintain operational knowledge.
Repo: jmagly/aiwg
Crash-resilient external agent loop with state persistence and CI/CD integration
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Enable agent loops to learn from similar past tasks and share patterns across loops
Query and manage the executable feedback debug memory
Execute tests on generated code and iterate until passing