agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Verify configured secondary git mirrors are present and not drifting from the primary remote/default branch
$ npx -y skills add jmagly/aiwg --skill git-mirror-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/git-mirror-auditContext preview
The summary Claude sees to decide when to auto-load this skill.
Verify configured secondary git mirrors are present and not drifting from the primary remote/default branch
namespace: aiwg name: git-mirror-audit platforms: [all] description: Verify configured secondary git mirrors are present and not drifting from the primary remote/default branch requires: - git: repository with remotes - config: .aiwg/aiwg.config remotes.secondary[] entries ensures: - report: mirror drift per configured secondary remote - exit-code: non-zero when drift exists and --fail-on-drift is set errors: - config-missing: no remotes.secondary[] configured - remote-missing: configured secondary remote does not exist in git remote invariants: - read-only audit; never pushes to mirrors - backup-mirror semantics are reported separately from active replication commandHint: argumentHint: "[--fail-on-drift] [--default-branch <name>] [--format text|json]" allowedTools: Read, Bash model: haiku category: maintenance orchestration: false modelRole: efficiency modelTier: economy
Audit redundant git mirrors declared in `.aiwg/aiwg.config`:
{
"remotes": {
"primary": "origin",
"secondary": [
{
"name": "github",
"purpose": "backup-mirror",
"push_on_release": true
}
]
}
}1. Read `remotes.primary`, `delivery.default_branch`, and `remotes.secondary[]`. 2. Confirm every configured secondary exists in `git remote`. 3. Fetch remote refs in read-only mode when the operator permits network access. 4. Compare `refs/remotes/{primary}/{default_branch}` with each secondary's default branch ref. 5. Report drift, missing remotes, and last known commit for each mirror.
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