원클릭으로
uni-store-adr
Store an architectural decision record in Unimatrix. ADRs live in Unimatrix only — no ADR files. Use after each design decision.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Store an architectural decision record in Unimatrix. ADRs live in Unimatrix only — no ADR files. Use after each design decision.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Version bump, changelog generation, tag, and push to trigger the release pipeline.
Manage a goal's capability map in Unimatrix — the behaviorally-proven units that must exist for a goal to be delivered. Decompose goals into capabilities, track delivery status, and report what's left. Status advances to proven ONLY on attached behavioral evidence.
Unimatrix Zero — vision guide mode. Strategic advisor for product evolution, feature ordering, vision alignment, security posture, and codebase health. Conversational. Does not modify application code or run delivery protocols.
Post-merge retrospective — extracts patterns, procedures, and lessons from shipped features into Unimatrix. Use after a feature PR is merged.
Store an architectural decision record in Unimatrix. ADRs live in Unimatrix only — no ADR files. Use after each design decision.
Ad-hoc independent product-lens review via uni-zero-reviewer. Use for re-reviews after rework or reviews outside protocol runs. Advisory only — human makes the call.
| name | uni-store-adr |
| description | Store an architectural decision record in Unimatrix. ADRs live in Unimatrix only — no ADR files. Use after each design decision. |
Stores an architectural decision record in Unimatrix as the sole authoritative store. ADRs are NOT written as files — Unimatrix provides search, supersession chains, and cross-feature discovery that files cannot.
Use this AFTER each design decision. The architect is the sole ADR authority.
mcp__unimatrix__context_search({"query": "{decision domain}", "category": "decision", "k": 5})
Check if any existing ADR covers the same concern. If so, you may need to supersede it (see "How to Supersede" below).
mcp__unimatrix__context_store({
"title": "ADR-NNN: {decision title}",
"content": "## Context\n{why this decision is needed}\n\n## Decision\n{what we decided}\n\n## Consequences\n{what follows from this decision}",
"topic": "{feature-id}",
"category": "decision",
"tags": ["adr", "{phase-prefix}", "{domain-tags}"],
"source": "architect",
"feature_cycle": "{feature-id}",
"agent_id": "{your role name, e.g. uni-architect}"
})
Note the Unimatrix entry ID returned. Pass it to the coordinator — downstream agents and the synthesizer need ADR entry IDs to reference decisions.
In your ARCHITECTURE.md, reference ADRs by Unimatrix entry ID:
## Decisions
| ADR | Title | Unimatrix ID |
|-----|-------|--------------|
| ADR-001 | Use rmcp 0.16 with stdio | #77 |
| ADR-002 | Additive confidence model | #85 |
When a new decision replaces a prior one:
mcp__unimatrix__context_search({"query": "{domain of old decision}", "category": "decision"})
Note the old entry's ID.
mcp__unimatrix__context_correct({
"original_id": 1234, // integer — never quote it
"content": "## Context\n{why the old decision is being replaced}\n\n## Decision\n{new decision}\n\n## Consequences\n{what changes}",
"title": "ADR-NNN: {new decision title}",
"reason": "Superseded by {feature-id}: {short explanation}"
})
This automatically:
Keep ADRs to 300-800 characters. They capture the decision, not the implementation.
## Context
The briefing tool returns duties, conventions, and semantic matches.
Duties duplicate what's already in agent definition files, consuming
~200 tokens for zero new information.
## Decision
Remove duties from Unimatrix categories and context_briefing responses.
Agent defs are the sole authority for role responsibilities.
## Consequences
- Briefing returns 2 sections (conventions + relevant context) instead of 3
- ~200 tokens freed per briefing call for more useful content
- 28 existing duty entries deprecated
- uni-init bootstrap no longer extracts duties
NOT a full design document. NOT implementation details. Just: why, what, and so-what.
| Tag Type | Examples |
|---|---|
| Always | adr |
| Phase prefix | nexus, vinculum, collective, cortical, alcove |
| Domain | storage, serialization, mcp, embedding, security, confidence |
| Cross-cutting | error-handling, async, thread-safety, api-design |
After storing:
| Don't Store | Why |
|---|---|
| Draft decisions under discussion | Store only finalized decisions |
| Implementation details (how) | ADRs capture the why — code captures the how |
| Decisions by other agents | Architect is the sole ADR authority |
| Coding conventions | Use convention category instead |
| Step-by-step procedures | Use /uni-store-procedure instead |