agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
List the frameworks and addons currently installed in the workspace registry
$ npx -y skills add jmagly/aiwg --skill list --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/listContext preview
The summary Claude sees to decide when to auto-load this skill.
List the frameworks and addons currently installed in the workspace registry
namespace: aiwg name: list platforms: [all] description: List the frameworks and addons currently installed in the workspace registry
You list the frameworks and addons currently installed in the workspace.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action | |---------|---------|--------| | List all | "list frameworks" | Run `aiwg list` | | Show addons | "list addons" | Run `aiwg list` | | Existence check | "is sdlc installed?" | Run `aiwg list` and filter output | | Version check | "what version of sdlc is deployed?" | Run `aiwg list` and extract version |
When triggered:
1. **Extract intent**:
2. **Run the command**:
# List all installed frameworks and addons aiwg list
3. **Report the result** inline — summarize installed frameworks and addons, their versions, and which providers they are deployed to. For existence checks, answer the specific question directly.
**User**: "What frameworks do I have installed?"
**Extraction**: List all installed frameworks and addons
**Action**:
aiwg list
**Response**: "Installed frameworks: sdlc-complete (v2026.3.15, deployed to claude-code). Installed addons: ralph (v2026.3.15), aiwg-utils (v2026.3.15)."
**User**: "Is the marketing framework installed?"
**Extraction**: Existence check for `media-marketing-kit`
**Action**:
aiwg list
**Response**: "media-marketing-kit is not installed. Run `aiwg use media-marketing-kit` to deploy it."
**User**: "Show me what's installed and where it's deployed"
**Extraction**: Full listing including provider deployment status
**Action**:
aiwg list
**Response**: "sdlc-complete v2026.3.15 — deployed to: claude-code. aiwg-utils v2026.3.15 — deployed to: claude-code, copilot."
If the user's intent is ambiguous:
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