agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Validate an entire AIWG addon package for completeness and release readiness
$ npx -y skills add jmagly/aiwg --skill validate-addon --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/validate-addonContext preview
The summary Claude sees to decide when to auto-load this skill.
Validate an entire AIWG addon package for completeness and release readiness
namespace: aiwg name: validate-addon description: Validate an entire AIWG addon package for completeness and release readiness platforms: [all]
You check an entire AIWG addon directory for completeness and release readiness, then produce a detailed structured report covering manifest integrity, artifact completeness, placement violations, and any blocking issues.
| Pattern | Example | Action | |---------|---------|--------| | Current directory | "validate this addon" | Validate addon at cwd | | Named addon | "check the aiwg-dev addon" | Find addon by name and validate | | Path-specific | "validate addon at agentic/code/addons/my-addon" | Validate at given path | | Release gate | "is this addon ready to release" | Full validation, block on any FAIL | | Quick check | "any issues with this addon" | Run validation, summarize findings |
1. **Locate the addon**:
2. **Read and validate `manifest.json`**:
3. **Check `README.md`**:
4. **Validate each skill listed in manifest**: For each entry in `manifest.json` `skills` array:
5. **Validate each agent listed in manifest**: For each entry in `manifest.json` `agents` array:
6. **Validate each rule listed in manifest**: For each entry in `manifest.json` `rules` array:
7. **Check for placement violations**:
8. **Check for `.aiwg/` references in addon artifacts**:
9. **Compile report**:
Addon Validation: <addon-name> v<version>
Path: agentic/code/addons/<name>/
Manifest:
PASS manifest.json present and valid JSON
PASS required fields: id, type, name, version, description
PASS version format: 2026.4.0 (CalVer, no leading zeros)
PASS devOnly: true (excluded from `aiwg use all` — intentional)
README:
PASS README.md present
Skills (3 listed):
PASS validate-component: SKILL.md present, frontmatter complete
PASS validate-addon: SKILL.md present, frontmatter complete
FAIL dev-doctor: listed in manifest but SKILL.md missing
Agents (0 listed):
PASS no agents declared
Rules (4 listed):
PASS skill-placement: rule file present, in RULES-INDEX.md
PASS no-circular-skill-calls: rule file present, in RULES-INDEX.md
PASS component-completeness: rule file present, in RULES-INDEX.md
FAIL addon-boundaries: not found in RULES-INDEX.md
Placement violations:
PASS no orphaned deployed files found
.aiwg/ references:
PASS no .aiwg/ path references in deployable artifacts
Result: FAIL — 2 blocking issues
Blocking issues:
1. skills/dev-doctor/SKILL.md missing — create the file or remove from manifest
2. addon-boundaries not in rules/RULES-INDEX.md — add an entry
Warnings:
none10. **Report result**: Surface the structured report to the user. Highlight blocking issues in the summary line. For each failure, include the specific remediation step.
**User**: "Is the aiwg-dev addon ready to release?"
**Output**:
Addon Validation: aiwg-dev v1.0.0 Path: agentic/code/addons/aiwg-dev/ Manifest: PASS (all required fields, valid CalVer) README: PASS Skills (3): PASS (all present and complete) Agents (0): PASS Rules (4): PASS (all present and in RULES-INDEX.md) Placement: PASS (no violations) .aiwg/ refs: PASS Result: PASS — addon is release-ready
**User**: "check the my-new-addon addon"
**Output**:
Addon Validation: my-new-addon v2026.4.0 Path: agentic/code/addons/my-new-addon/ Manifest: PASS README: FAIL — README.md missing Skills (2): PASS my-skill: complete FAIL other-skill: SKILL.md missing (listed in manifest but file not found) Rules (1): PASS Placement: WARN — .claude/skills/orphan-skill/ found with no a
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