@nano-step/skill-manager 5.5.3 → 5.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -5
- package/dist/installer.d.ts +2 -2
- package/dist/installer.js +17 -14
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +1 -1
- package/package.json +1 -1
- package/private-catalog.json +2 -2
- package/skills/nano-brain/AGENTS_SNIPPET.md +16 -10
- package/skills/nano-brain/SKILL.md +61 -19
- package/skills/nano-brain/references/code-intelligence.md +57 -0
- package/skills/nano-brain/skill.json +6 -3
- package/skills/rri-t-testing/SKILL.md +224 -0
- package/skills/rri-t-testing/assets/rri-t-coverage-dashboard.md +138 -0
- package/skills/rri-t-testing/assets/rri-t-memory-protocol.md +271 -0
- package/skills/rri-t-testing/assets/rri-t-persona-interview.md +249 -0
- package/skills/rri-t-testing/assets/rri-t-quality-scorecard.md +122 -0
- package/skills/rri-t-testing/assets/rri-t-risk-matrix.md +87 -0
- package/skills/rri-t-testing/assets/rri-t-stress-matrix.md +100 -0
- package/skills/rri-t-testing/assets/rri-t-test-case.md +181 -0
- package/skills/rri-t-testing/assets/rri-t-testability-gate.md +131 -0
- package/skills/rri-t-testing/assets/rri-t-traceability-matrix.md +105 -0
- package/skills/rri-t-testing/skill.json +9 -0
- package/skills/skill-management/references/tool-categories.md +58 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# RRI-T Traceability Matrix
|
|
2
|
+
|
|
3
|
+
**Feature:** {feature-name}
|
|
4
|
+
**Date:** {YYYY-MM-DD}
|
|
5
|
+
**Scope:** {scope-description}
|
|
6
|
+
**Phase:** {current-phase}
|
|
7
|
+
|
|
8
|
+
## Coverage Summary
|
|
9
|
+
|
|
10
|
+
| Priority | Total Reqs | Covered | Percentage | Status |
|
|
11
|
+
|----------|------------|---------|------------|--------|
|
|
12
|
+
| P0 | {count} | {count} | {pct}% | PASS / CONCERNS / FAIL |
|
|
13
|
+
| P1 | {count} | {count} | {pct}% | PASS / CONCERNS / FAIL |
|
|
14
|
+
| P2 | {count} | {count} | {pct}% | PASS / CONCERNS / FAIL |
|
|
15
|
+
| P3 | {count} | {count} | {pct}% | PASS / CONCERNS / FAIL |
|
|
16
|
+
| **Total** | {count} | {count} | {pct}% | {status} |
|
|
17
|
+
|
|
18
|
+
### Status Thresholds
|
|
19
|
+
|
|
20
|
+
| Status | P0 | P1 | Overall |
|
|
21
|
+
|--------|----|----|---------|
|
|
22
|
+
| PASS | 100% | >= 90% | >= 80% |
|
|
23
|
+
| CONCERNS | 100% | 80-89% | 70-79% |
|
|
24
|
+
| FAIL | < 100% | < 80% | < 70% |
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Detailed Traceability
|
|
29
|
+
|
|
30
|
+
### P0 Requirements (Critical)
|
|
31
|
+
|
|
32
|
+
| Req ID | Requirement | Test Cases | Coverage | Result |
|
|
33
|
+
|--------|-------------|------------|----------|--------|
|
|
34
|
+
| REQ-001 | User can login with valid credentials | TC-001, TC-002 | FULL | PASS |
|
|
35
|
+
| REQ-002 | Data persists after session timeout | TC-003 | FULL | PASS |
|
|
36
|
+
| REQ-003 | Payment transactions are atomic | TC-004, TC-005, TC-006 | FULL | FAIL |
|
|
37
|
+
| REQ-004 | | | | |
|
|
38
|
+
| REQ-005 | | | | |
|
|
39
|
+
|
|
40
|
+
### P1 Requirements (Major)
|
|
41
|
+
|
|
42
|
+
| Req ID | Requirement | Test Cases | Coverage | Result |
|
|
43
|
+
|--------|-------------|------------|----------|--------|
|
|
44
|
+
| REQ-101 | Search supports Vietnamese diacritics | TC-101 | FULL | PASS |
|
|
45
|
+
| REQ-102 | Offline changes sync within 60s | TC-102, TC-103 | PARTIAL | CONCERNS |
|
|
46
|
+
| REQ-103 | Role changes take effect immediately | | NONE | MISSING |
|
|
47
|
+
| REQ-104 | | | | |
|
|
48
|
+
| REQ-105 | | | | |
|
|
49
|
+
|
|
50
|
+
### P2 Requirements (Minor)
|
|
51
|
+
|
|
52
|
+
| Req ID | Requirement | Test Cases | Coverage | Result |
|
|
53
|
+
|--------|-------------|------------|----------|--------|
|
|
54
|
+
| REQ-201 | | | | |
|
|
55
|
+
| REQ-202 | | | | |
|
|
56
|
+
| REQ-203 | | | | |
|
|
57
|
+
|
|
58
|
+
### P3 Requirements (Trivial)
|
|
59
|
+
|
|
60
|
+
| Req ID | Requirement | Test Cases | Coverage | Result |
|
|
61
|
+
|--------|-------------|------------|----------|--------|
|
|
62
|
+
| REQ-301 | | | | |
|
|
63
|
+
| REQ-302 | | | | |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Coverage Legend
|
|
68
|
+
|
|
69
|
+
| Coverage | Definition |
|
|
70
|
+
|----------|------------|
|
|
71
|
+
| FULL | All acceptance criteria have test cases |
|
|
72
|
+
| PARTIAL | Some acceptance criteria have test cases |
|
|
73
|
+
| NONE | No test cases mapped to requirement |
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Gap Prioritization
|
|
78
|
+
|
|
79
|
+
| Gap # | Requirement | Priority | Risk | Recommendation |
|
|
80
|
+
|-------|-------------|----------|------|----------------|
|
|
81
|
+
| GAP-1 | REQ-103: Role changes take effect immediately | P1 | HIGH | Add TC for role revocation mid-session |
|
|
82
|
+
| GAP-2 | REQ-102: Offline sync (partial coverage) | P1 | MEDIUM | Add TC for 50+ pending changes |
|
|
83
|
+
| GAP-3 | | | | |
|
|
84
|
+
| GAP-4 | | | | |
|
|
85
|
+
| GAP-5 | | | | |
|
|
86
|
+
|
|
87
|
+
### Gap Severity
|
|
88
|
+
|
|
89
|
+
| Severity | Definition |
|
|
90
|
+
|----------|------------|
|
|
91
|
+
| CRITICAL | P0 requirement with NONE or PARTIAL coverage |
|
|
92
|
+
| HIGH | P1 requirement with NONE coverage |
|
|
93
|
+
| MEDIUM | P1 requirement with PARTIAL coverage |
|
|
94
|
+
| LOW | P2/P3 requirement with NONE or PARTIAL coverage |
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## Summary
|
|
99
|
+
|
|
100
|
+
- **Total Requirements:** {count}
|
|
101
|
+
- **Fully Covered:** {count} ({pct}%)
|
|
102
|
+
- **Partially Covered:** {count} ({pct}%)
|
|
103
|
+
- **Not Covered:** {count} ({pct}%)
|
|
104
|
+
- **Critical Gaps:** {count}
|
|
105
|
+
- **High Gaps:** {count}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rri-t-testing",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "RRI-T v2: Rapid Risk-Informed Testing with BMAD-enhanced risk scoring, traceability, quality gates, and nano-brain memory persistence",
|
|
5
|
+
"compatibility": "OpenCode",
|
|
6
|
+
"agent": null,
|
|
7
|
+
"commands": [],
|
|
8
|
+
"tags": ["testing", "qa", "rri-t", "release-gates", "test-cases", "risk-scoring", "traceability", "bmad", "nano-brain"]
|
|
9
|
+
}
|
|
@@ -145,6 +145,58 @@ Notes:
|
|
|
145
145
|
- Tools require a page context; select or create a page first.
|
|
146
146
|
- Prefer take_snapshot for element discovery before click/hover/drag.
|
|
147
147
|
|
|
148
|
+
## Memory & Knowledge Category (Example)
|
|
149
|
+
|
|
150
|
+
Category name: Memory & Knowledge
|
|
151
|
+
Keywords: memory, search, recall, context, session, codebase, knowledge, symbol, impact, dependency, graph, focus
|
|
152
|
+
Description: Persistent memory, hybrid search, code intelligence, and cross-repo symbol analysis via nano-brain.
|
|
153
|
+
|
|
154
|
+
Example tools that might appear in this category:
|
|
155
|
+
- memory_search
|
|
156
|
+
- BM25 full-text keyword search across indexed documents.
|
|
157
|
+
- memory_vsearch
|
|
158
|
+
- Semantic vector search using embeddings.
|
|
159
|
+
- memory_query
|
|
160
|
+
- Full hybrid search with query expansion, RRF fusion, and LLM reranking.
|
|
161
|
+
- memory_get
|
|
162
|
+
- Retrieve a document by path or docid.
|
|
163
|
+
- memory_multi_get
|
|
164
|
+
- Batch retrieve documents by glob pattern or comma-separated list.
|
|
165
|
+
- memory_write
|
|
166
|
+
- Write content to daily log with workspace context.
|
|
167
|
+
- memory_set
|
|
168
|
+
- Set/update a keyed memory (overwrites previous value).
|
|
169
|
+
- memory_delete
|
|
170
|
+
- Delete a keyed memory.
|
|
171
|
+
- memory_keys
|
|
172
|
+
- List all keyed memories.
|
|
173
|
+
- memory_status
|
|
174
|
+
- Show index health, collection info, and model status.
|
|
175
|
+
- memory_index_codebase
|
|
176
|
+
- Index codebase files in the current workspace.
|
|
177
|
+
- memory_update
|
|
178
|
+
- Trigger immediate reindex of all collections.
|
|
179
|
+
- memory_focus
|
|
180
|
+
- Get dependency graph context for a specific file.
|
|
181
|
+
- memory_graph_stats
|
|
182
|
+
- Get statistics about the file dependency graph.
|
|
183
|
+
- memory_symbols
|
|
184
|
+
- Query cross-repo symbols (Redis keys, PubSub channels, MySQL tables, API endpoints, HTTP calls, Bull queues).
|
|
185
|
+
- memory_impact
|
|
186
|
+
- Analyze cross-repo impact of a symbol (writers vs readers, publishers vs subscribers).
|
|
187
|
+
- code_context
|
|
188
|
+
- 360-degree view of a code symbol — callers, callees, cluster, flows, infrastructure connections.
|
|
189
|
+
- code_impact
|
|
190
|
+
- Analyze impact of changing a symbol — upstream/downstream dependencies, affected flows, risk level.
|
|
191
|
+
- code_detect_changes
|
|
192
|
+
- Detect changed symbols and affected flows from git diff.
|
|
193
|
+
|
|
194
|
+
Notes:
|
|
195
|
+
- Memory tools require nano-brain MCP server to be configured.
|
|
196
|
+
- Code intelligence tools require prior indexing via memory_index_codebase.
|
|
197
|
+
- Use memory_query for best quality results (combines BM25 + vector + reranking).
|
|
198
|
+
- Use memory_search for exact keyword matches, memory_vsearch for conceptual search.
|
|
199
|
+
|
|
148
200
|
## GitHub Operations Category (Example)
|
|
149
201
|
|
|
150
202
|
Category name: GitHub Operations
|
|
@@ -220,13 +272,18 @@ Example tools that might appear in this category:
|
|
|
220
272
|
## Category Boundary Examples
|
|
221
273
|
Use these to avoid misclassification:
|
|
222
274
|
- "take a screenshot" -> Browser Automation
|
|
275
|
+
- "recall past decisions" -> Memory & Knowledge
|
|
223
276
|
- "list pull requests" -> GitHub Operations
|
|
224
277
|
- "list graphql queries" -> GraphQL Introspection
|
|
225
278
|
- "find docs for lodash" -> Documentation Lookup
|
|
279
|
+
- "what calls this function" -> Memory & Knowledge
|
|
280
|
+
- "search past sessions" -> Memory & Knowledge
|
|
226
281
|
|
|
227
282
|
## Common Intent Phrases by Category
|
|
228
283
|
Browser intents:
|
|
229
284
|
- "click", "hover", "fill form", "upload file", "take snapshot"
|
|
285
|
+
Memory intents:
|
|
286
|
+
- "recall", "remember", "past session", "what did we do", "search memory", "save decision", "code context", "impact analysis", "what calls", "dependency graph"
|
|
230
287
|
GitHub intents:
|
|
231
288
|
- "get PR", "list issues", "search repo", "read file"
|
|
232
289
|
GraphQL intents:
|
|
@@ -242,6 +299,7 @@ Docs intents:
|
|
|
242
299
|
|
|
243
300
|
## Category Ownership Notes (Semantic Only)
|
|
244
301
|
- Browser Automation: runtime web UI interaction and diagnostics.
|
|
302
|
+
- Memory & Knowledge: persistent cross-session memory, hybrid search, code intelligence, and cross-repo symbol analysis.
|
|
245
303
|
- GitHub Operations: repository metadata and collaboration artifacts.
|
|
246
304
|
- GraphQL Introspection: schema discovery and field metadata only.
|
|
247
305
|
- Documentation Lookup: documentation discovery and lookup.
|