@magistr/issue-lifecycle
v2026.04.10.1
Issue lifecycle model with 9 bundled Claude Code skills for DDD, TDD, moldable development, and parallel code review.
Drives issues from filing through triage, prior-art lookup, DDD + TDD
planning, parallel review fan-out (5 review skills), autonomous
code-review iteration (zero CRITICAL + zero HIGH gate), optional UAT/KB
harvest, and completion. State persists across sessions via the state
resource; the hydrate method writes a cheap summary resource for
long autonomous loops.
State Machine
filed ──[triage]──> triaged
triaged ──[plan]──> planned
planned ──[review_plan]──> reviewing
reviewing ──[approve_plan]──> approved
reviewing ──[reject_plan]──> planned (feedback loop)
approved ──[implement]──> implementing
implementing ──[review_code]──> code_reviewing
code_reviewing ──[resolve_findings]──> resolved
code_reviewing ──[iterate]──> implementing (autonomous loop)
resolved ──[iterate]──> implementing
resolved ──[harvest]──> harvested (optional)
resolved ──[complete]──> complete
harvested ──[complete]──> completeapprove_plan requires full matrix coverage AND zero open CRITICAL AND
zero open HIGH findings. close works from any state.
Methods
start— file a new issuetriage— classify with optional confidence/regression/reproductionrecord_prior_art— record existing UAT scenarios and KB entriesplan— create/revise plan with DDD analysis, TDD strategy, review matrixreview_plan— enter plan review phaserecord_review— record one reviewer's findingsapprove_plan— approve (gated on coverage + zero blocking findings)reject_plan— reject with auto/human source trackingimplement— start coding on a branchreview_code— enter code review phaseresolve_findings— record resolutions, snapshot rounditerate— return to implementation (bumps codeReviewIteration)harvest— record UAT/KB improvement proposalscomplete— mark doneclose— abandon from any statehydrate— write compact summary for autonomous loops
Bundled Skills
issue-lifecycle— orchestrates the full lifecycleddd— domain-driven design building block selectiontdd— red-green-refactor workflow enforcementmoldable-dev— contextual inspectors and live-data queriesreview-code— general code reviewreview-adversarial— adversarial review (7 dimensions)review-security— OWASP-adapted security auditreview-ux— CLI output and error message reviewreview-skill— skill quality review
Repository
https://github.com/umag/swamp-workspace
Labels
Quality score
How well-documented and verifiable this extension is.
Not yet scored.
A score will be generated the next time this extension is published. The owner can also trigger scoring manually.
Install
$ swamp extension pull @magistr/issue-lifecycleRelease Notes
Restructure to monorepo layout. Add repository field, root README as additionalFile, improved manifest description with state machine and method docs.
Security Notice
This extension includes AI agent skills that can modify AI assistant behavior. Review the skill files before installing.
| Argument | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| labels | array |
| Argument | Type | Description |
|---|---|---|
| priority | enum | |
| affectedAreas | array | |
| reasoning? | string | |
| isRegression? | boolean | |
| clarifyingQuestions | array |
| Argument | Type | Description |
|---|---|---|
| uatScenarios | array | |
| kbEntries | array |
| Argument | Type | Description |
|---|---|---|
| summary | string | |
| steps | array | |
| dddAnalysis | string | Which aggregates, entities, value objects, and domain services are affected |
| testStrategy | string | What tests to write first, red-green-refactor sequence |
| potentialChallenges | array |
| Argument | Type | Description |
|---|---|---|
| reviewer | string | Skill name: review-code, review-adversarial, review-security, review-ux, review-skill |
| verdict | enum | |
| findings | array |
| Argument | Type | Description |
|---|---|---|
| reason | string | |
| source | enum |
| Argument | Type | Description |
|---|---|---|
| branch | string | |
| description | string |
| Argument | Type | Description |
|---|---|---|
| resolutions | record | Map of finding description → resolution action |
| Argument | Type | Description |
|---|---|---|
| reason | string | |
| source | enum |
| Argument | Type | Description |
|---|---|---|
| uatProposals | array | |
| kbProposals | array |
| Argument | Type | Description |
|---|---|---|
| summary | string |
| Argument | Type | Description |
|---|---|---|
| reason | string |
Resources
Drive issues from triage through completion with prior-art lookup, DDD + TDD planning, parallel review fan-out, autonomous code-review iteration (zero CRITICAL + zero HIGH gate), optional UAT/KB harvest, and a cheap `hydrate` resource for long autonomous loops.
Release Notes
Initial publish: issue lifecycle model (v2026.04.09.1) with prior-art lookup, DDD+TDD planning, autonomous code-review iteration, UAT/KB harvest, and hydrate summary resource. Bundled with 9 user skills: issue-lifecycle, ddd, tdd, moldable-dev, review-code/adversarial/security/ux/skill.