@namch/agent-assistant 1.3.0 → 1.3.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.
Files changed (90) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/agents/backend-engineer.md +3 -3
  3. package/agents/brainstormer.md +3 -3
  4. package/agents/business-analyst.md +3 -3
  5. package/agents/database-architect.md +3 -3
  6. package/agents/debugger.md +2 -2
  7. package/agents/designer.md +2 -2
  8. package/agents/devops-engineer.md +2 -2
  9. package/agents/docs-manager.md +23 -15
  10. package/agents/frontend-engineer.md +3 -3
  11. package/agents/game-engineer.md +3 -3
  12. package/agents/mobile-engineer.md +4 -4
  13. package/agents/performance-engineer.md +3 -3
  14. package/agents/planner.md +4 -4
  15. package/agents/project-manager.md +3 -3
  16. package/agents/researcher.md +3 -3
  17. package/agents/reviewer.md +3 -3
  18. package/agents/scouter.md +3 -3
  19. package/agents/security-engineer.md +3 -3
  20. package/agents/tech-lead.md +3 -3
  21. package/agents/tester.md +2 -2
  22. package/commands/docs/audit.md +554 -78
  23. package/commands/docs/business.md +392 -76
  24. package/commands/docs/core.md +573 -74
  25. package/commands/docs.md +62 -61
  26. package/documents/business/business-features/00-index.md +101 -0
  27. package/documents/business/business-features/01-feature-inventory.md +341 -0
  28. package/documents/business/business-features/02-prioritization-moscow.md +148 -0
  29. package/documents/business/business-features/03-feature-specifications.md +512 -0
  30. package/documents/business/business-features/04-dependencies-and-release-sequencing.md +313 -0
  31. package/documents/business/business-features/05-success-metrics.md +290 -0
  32. package/documents/business/business-glossary/00-index.md +89 -0
  33. package/documents/business/business-glossary/01-canonical-terms.md +428 -0
  34. package/documents/business/business-glossary/02-synonyms-and-deprecated-terms.md +180 -0
  35. package/documents/business/business-glossary/03-domain-entities-and-events.md +395 -0
  36. package/documents/business/business-glossary/04-api-term-mapping.md +173 -0
  37. package/documents/business/business-prd/00-index.md +107 -0
  38. package/documents/business/business-prd/01-executive-summary.md +131 -0
  39. package/documents/business/business-prd/02-problem-goals-and-scope.md +204 -0
  40. package/documents/business/business-prd/03-stakeholders-and-requirements.md +210 -0
  41. package/documents/business/business-prd/04-acceptance-risks-assumptions.md +246 -0
  42. package/documents/business/business-workflows/00-index.md +107 -0
  43. package/documents/business/business-workflows/01-actor-map.md +303 -0
  44. package/documents/business/business-workflows/02-workflow-catalog.md +252 -0
  45. package/documents/business/business-workflows/03-detailed-workflows.md +641 -0
  46. package/documents/business/business-workflows/04-decision-rules-and-exceptions.md +216 -0
  47. package/documents/business/business-workflows/05-sla-and-handoffs.md +253 -0
  48. package/documents/knowledge-architecture/00-index.md +159 -0
  49. package/documents/knowledge-architecture/01-system-overview.md +240 -0
  50. package/documents/knowledge-architecture/02-components.md +419 -0
  51. package/documents/knowledge-architecture/03-data-flow.md +369 -0
  52. package/documents/knowledge-architecture/04-design-patterns.md +498 -0
  53. package/documents/knowledge-architecture/05-decisions.md +410 -0
  54. package/documents/knowledge-domain/00-index.md +251 -0
  55. package/documents/knowledge-domain/01-entities.md +583 -0
  56. package/documents/knowledge-domain/02-database-schema.md +138 -0
  57. package/documents/knowledge-domain/03-api-contracts.md +479 -0
  58. package/documents/knowledge-domain/04-business-rules.md +555 -0
  59. package/documents/knowledge-overview/00-index.md +107 -0
  60. package/documents/knowledge-overview/01-project-identity.md +162 -0
  61. package/documents/knowledge-overview/02-tech-stack.md +119 -0
  62. package/documents/knowledge-overview/03-features.md +233 -0
  63. package/documents/knowledge-overview/04-getting-started.md +394 -0
  64. package/documents/knowledge-source-base/00-index.md +107 -0
  65. package/documents/knowledge-source-base/01-directory-structure.md +312 -0
  66. package/documents/knowledge-source-base/02-entry-points.md +346 -0
  67. package/documents/knowledge-source-base/03-key-modules.md +582 -0
  68. package/documents/knowledge-source-base/04-configuration.md +467 -0
  69. package/documents/knowledge-standards/00-index.md +129 -0
  70. package/documents/knowledge-standards/01-code-style.md +161 -0
  71. package/documents/knowledge-standards/02-conventions.md +255 -0
  72. package/documents/knowledge-standards/03-git-workflow.md +228 -0
  73. package/documents/knowledge-standards/04-testing-standards.md +175 -0
  74. package/package.json +1 -1
  75. package/rules/REFERENCE.md +10 -6
  76. package/skills/docs-audit/README.md +10 -8
  77. package/skills/docs-audit/SKILL.md +45 -41
  78. package/skills/docs-audit/references/scoring-framework.md +5 -5
  79. package/skills/docs-core/README.md +19 -14
  80. package/skills/docs-core/SKILL.md +189 -117
  81. package/skills/planning/references/codebase-understanding.md +5 -5
  82. package/documents/business/business-features.md +0 -894
  83. package/documents/business/business-glossary.md +0 -554
  84. package/documents/business/business-prd.md +0 -400
  85. package/documents/business/business-workflows.md +0 -713
  86. package/documents/knowledge-architecture.md +0 -621
  87. package/documents/knowledge-domain.md +0 -602
  88. package/documents/knowledge-overview.md +0 -316
  89. package/documents/knowledge-source-base.md +0 -581
  90. package/documents/knowledge-standards.md +0 -632
@@ -1,554 +0,0 @@
1
- # Agent Assistant — Business Glossary
2
-
3
- > **Document Type**: Domain Terminology and Definitions
4
- > **Version**: 1.0
5
- > **Status**: Complete
6
- > **Last Updated**: 2026-01-26
7
-
8
- ---
9
-
10
- ## 1. Overview
11
-
12
- This glossary defines the key terms, concepts, and acronyms used throughout Agent Assistant. Terms are organized alphabetically within categories for easy reference.
13
-
14
- ---
15
-
16
- ## 2. Core Concepts
17
-
18
- ### Agent
19
-
20
- A **specialist persona** with defined expertise, thinking protocol, and constraints. Each agent has a specific role (e.g., backend development, testing, security) and operates within defined boundaries.
21
-
22
- | Property | Description |
23
- |----------|-------------|
24
- | ID | Unique identifier (e.g., `backend-engineer`) |
25
- | Profile | Domain:category classification (e.g., `backend:execution`) |
26
- | Role | Human-readable job title |
27
- | Skills | Domain knowledge injected via Matrix |
28
-
29
- **Example**: The `tester` agent specializes in test strategy, automation, and coverage analysis.
30
-
31
- ---
32
-
33
- ### Command
34
-
35
- A **slash-prefixed workflow trigger** that initiates a structured development process. Commands route to workflows that orchestrate multiple agents.
36
-
37
- | Format | Example |
38
- |--------|---------|
39
- | Basic | `/cook` |
40
- | With variant | `/cook:hard` |
41
- | With argument | `/cook:hard "implement OAuth"` |
42
-
43
- **Available Commands**: `/cook`, `/fix`, `/plan`, `/test`, `/review`, `/debug`, `/design`, `/docs`, `/report`, `/deploy`, `/ask`, `/auto`, `/brainstorm`, `/code`
44
-
45
- ---
46
-
47
- ### Deliverable
48
-
49
- A **concrete output** produced by an agent during workflow execution. Deliverables include code files, documentation, plans, reports, and test files.
50
-
51
- | Type | Example Location |
52
- |------|------------------|
53
- | Plan | `./reports/{topic}/plans/PLAN-auth.md` |
54
- | Scout Report | `./reports/{topic}/scouts/SCOUT-dashboard.md` |
55
- | Documentation | `./documents/knowledge-overview.md` |
56
- | Code | Implementation in codebase |
57
-
58
- ---
59
-
60
- ### Matrix Skill Discovery (HSOL)
61
-
62
- A **Hybrid Skill Orchestration Layer (HSOL)** that combines static matrix-skills with dynamic community skills. Skills are resolved by agent profile and request context; dynamic discovery runs only for `hard`/`focus` variants when matrix fitness < 0.8 (blocking when < 0.75 so the current task uses the new skill; async when 0.75–0.8 for recommendations only). See `rules/SKILL.md`.
63
-
64
- **Resolution Flow**:
65
- ```
66
- Agent Profile → _index.yaml → Domain Files + _dynamic.yaml → Fitness → Inject; optionally discover (find-skills) by variant
67
- ```
68
-
69
- **Benefits**:
70
- - Single source of truth (matrix + dynamic manifest)
71
- - Variant-aware: fast skips discovery; hard/focus use blocking/async by fitness
72
- - Current task can use newly installed skill when matrix insufficient (< 0.75)
73
-
74
- ---
75
-
76
- ### Orchestrator
77
-
78
- The **central coordination layer** that manages workflow execution. The Orchestrator routes commands, delegates to agents, verifies quality gates, and synthesizes outputs.
79
-
80
- **Key Principle**: Orchestrators COORDINATE but never IMPLEMENT directly.
81
-
82
- | Does | Does NOT |
83
- |------|----------|
84
- | Route commands | Write code |
85
- | Delegate to agents | Debug issues |
86
- | Verify exit criteria | Run tests directly |
87
- | Synthesize outputs | Design systems |
88
-
89
- ---
90
-
91
- ### Phase
92
-
93
- A **discrete step** within a workflow with defined entry requirements, agent delegation, actions, and exit criteria. Phases execute sequentially.
94
-
95
- | Component | Description |
96
- |-----------|-------------|
97
- | Agent | Specialist assigned to phase |
98
- | Goal | Objective of the phase |
99
- | Actions | Steps to complete |
100
- | Exit Criteria | Conditions to proceed |
101
- | Deliverable | Output produced |
102
-
103
- ---
104
-
105
- ### Profile
106
-
107
- A **domain:category classification** that determines which skills an agent receives from the Matrix.
108
-
109
- | Format | Example |
110
- |--------|---------|
111
- | Pattern | `{domain}:{category}` |
112
- | Backend | `backend:execution` |
113
- | QA | `quality:validation` |
114
- | Architecture | `architecture:orchestration` |
115
-
116
- ---
117
-
118
- ### Quality Gate
119
-
120
- An **automated verification checkpoint** that must pass before workflow progression. Agent Assistant implements 5 gates.
121
-
122
- | Gate | Purpose |
123
- |------|---------|
124
- | Compile | Code builds successfully |
125
- | Lint | Code style compliance |
126
- | Test | Tests pass, coverage met |
127
- | Security | No vulnerabilities |
128
- | Review | Code review approved |
129
-
130
- ---
131
-
132
- ### Skill
133
-
134
- A **domain-specific knowledge module** loaded on-demand to enhance agent capabilities. Skills provide guidelines, patterns, and best practices.
135
-
136
- | Property | Description |
137
- |----------|-------------|
138
- | ID | Unique identifier (e.g., `api-patterns`) |
139
- | Domain | Category (e.g., `backend`) |
140
- | Priority | 1-10 (10 = critical) |
141
- | Category | core, expert, specialized, utility |
142
-
143
- ---
144
-
145
- ### Variant
146
-
147
- A **workflow intensity level** that determines the number of agents, phases, and quality gates applied.
148
-
149
- | Variant | Agents | Phases | Gates | Use Case |
150
- |---------|--------|--------|-------|----------|
151
- | `:fast` | 2-3 | 3-4 | Minimal | Simple, low-risk |
152
- | `:hard` | 5-8 | 6-8 | All 5 | Complex, production |
153
-
154
- ---
155
-
156
- ### Workflow
157
-
158
- A **structured sequence of phases** that accomplishes a development goal. Workflows are defined in command files and executed by the Orchestrator.
159
-
160
- **Workflow Structure**:
161
- ```
162
- Pre-flight → Phase 1 → Phase 2 → ... → Phase N → Completion
163
- ```
164
-
165
- ---
166
-
167
- ## 3. Orchestration Terms
168
-
169
- ### Context Isolation
170
-
171
- The principle that **agent sessions operate independently** without sharing memory or polluting each other's context.
172
-
173
- | Tier | Context Model |
174
- |------|---------------|
175
- | TIER 1 (Sub-agent) | ISOLATED (fresh memory) |
176
- | TIER 2 (Embody) | SHARED (same memory) |
177
-
178
- ---
179
-
180
- ### Deep Embodiment
181
-
182
- When the Orchestrator **fully transforms into an agent**, adopting its thinking protocol, constraints, and output format exactly.
183
-
184
- **Embodiment Checklist**:
185
- - [ ] Core directive extracted
186
- - [ ] Thinking protocol adopted
187
- - [ ] Constraints bound
188
- - [ ] Output format memorized
189
-
190
- ---
191
-
192
- ### Exit Criteria
193
-
194
- **Conditions that must be satisfied** before a phase can transition to the next. Exit criteria ensure quality and completeness.
195
-
196
- **Example**:
197
- ```markdown
198
- - [ ] Project structure mapped
199
- - [ ] Tech stack identified
200
- - [ ] Key files located
201
- ```
202
-
203
- ---
204
-
205
- ### Handoff
206
-
207
- The **transfer of work** from one agent to another during workflow execution. Handoffs include essential context but exclude internal reasoning.
208
-
209
- **Handoff Includes**:
210
- - Original requirements
211
- - Prior decisions
212
- - Constraints
213
- - Deliverables
214
-
215
- **Handoff Excludes**:
216
- - Internal reasoning chains
217
- - Failed attempts
218
- - Rejected alternatives
219
-
220
- ---
221
-
222
- ### Orchestration Laws
223
-
224
- The **10 inviolable rules** that govern all orchestration behavior. Violations must be detected and corrected.
225
-
226
- | Law | Name |
227
- |-----|------|
228
- | 1 | Absolute Decentralization |
229
- | 2 | Requirement Integrity |
230
- | 3 | Workflow Sovereignty |
231
- | 4 | Deep Agent Embodiment |
232
- | 5 | Context Isolation |
233
- | 6 | Language Matching |
234
- | 7 | Recursive Delegation |
235
- | 8 | Stateful Handoff |
236
- | 9 | Constraint Propagation |
237
- | 10 | Tiered Execution |
238
-
239
- ---
240
-
241
- ### TIER 1 Execution (Sub-agent)
242
-
243
- **Native tool invocation** where an agent runs in an isolated context with fresh memory. TIER 1 is MANDATORY when available.
244
-
245
- **Characteristics**:
246
- - Isolated context
247
- - Fresh memory
248
- - Preferred for quality
249
- - Requires tool support
250
-
251
- ---
252
-
253
- ### TIER 2 Execution (Embody)
254
-
255
- **Fallback pattern** where the Orchestrator reads an agent file and transforms to become that agent within shared context.
256
-
257
- **When Used**:
258
- - TIER 1 tool unavailable
259
- - System error in TIER 1
260
- - Never for preference/efficiency
261
-
262
- ---
263
-
264
- ### Tiered Execution
265
-
266
- The **protocol for choosing** between TIER 1 (sub-agent) and TIER 2 (embody) execution modes.
267
-
268
- **Decision Flow**:
269
- 1. Check if sub-agent tool exists
270
- 2. If yes → MUST use TIER 1
271
- 3. If no or error → MAY use TIER 2
272
-
273
- ---
274
-
275
- ## 4. Workflow Terms
276
-
277
- ### Blocking Phase
278
-
279
- A phase that **cannot proceed** without deliverables from prior phases. Prior deliverables become immutable constraints.
280
-
281
- **Example**: Implementation phase blocked until Plan exists.
282
-
283
- ---
284
-
285
- ### Drift Detection
286
-
287
- **Identifying when implementation deviates** from the approved plan. Drift requires re-planning before continuing.
288
-
289
- **Detected By**: `tech-lead` agent during implementation oversight.
290
-
291
- ---
292
-
293
- ### Just-In-Time Loading
294
-
295
- The principle of **loading resources only when needed** by the current phase, rather than loading everything upfront.
296
-
297
- **Benefits**:
298
- - Efficient context usage
299
- - Faster initial response
300
- - Reduced memory pressure
301
-
302
- ---
303
-
304
- ### Pre-flight
305
-
306
- **Mandatory setup steps** before workflow execution, including loading rule files and checking prerequisites.
307
-
308
- **Pre-flight Actions**:
309
- 1. Load ORCHESTRATION-LAWS.md
310
- 2. Load ADAPTIVE-EXECUTION.md
311
- 3. Load EXECUTION-PROTOCOL.md
312
-
313
- ---
314
-
315
- ### Router
316
-
317
- A **command file** that analyzes the request and selects the appropriate variant based on complexity.
318
-
319
- **Routing Example**:
320
- ```
321
- /cook → cook.md (router) → Analyzes request → cook/hard.md (selected)
322
- ```
323
-
324
- ---
325
-
326
- ## 5. Documentation Terms
327
-
328
- ### Audit Docs
329
-
330
- **Security and compliance documentation** generated by `/docs:audit`, including security assessments and recommendations.
331
-
332
- | File | Content |
333
- |------|---------|
334
- | `audit-security.md` | Security assessment |
335
- | `audit-compliance.md` | Compliance status |
336
- | `audit-dataflow.md` | Data flow analysis |
337
- | `audit-recommendations.md` | Recommendations |
338
-
339
- ---
340
-
341
- ### Business Docs
342
-
343
- **Business-oriented documentation** generated by `/docs:business`, including PRD, features, workflows, and glossary.
344
-
345
- | File | Content |
346
- |------|---------|
347
- | `business-prd.md` | Product requirements |
348
- | `business-features.md` | Feature specifications |
349
- | `business-workflows.md` | User journeys |
350
- | `business-glossary.md` | Term definitions |
351
-
352
- ---
353
-
354
- ### Core Docs
355
-
356
- **Technical documentation** generated by `/docs:core`, covering architecture, domain, source base, and standards.
357
-
358
- | File | Content |
359
- |------|---------|
360
- | `knowledge-overview.md` | Project intro, goals |
361
- | `knowledge-architecture.md` | System design |
362
- | `knowledge-domain.md` | Data models |
363
- | `knowledge-source-base.md` | Directory structure |
364
- | `knowledge-standards.md` | Code style |
365
-
366
- ---
367
-
368
- ## 6. Technical Terms
369
-
370
- ### ADR (Architecture Decision Record)
371
-
372
- A **document capturing** an important architectural decision, including context, decision, and consequences.
373
-
374
- ---
375
-
376
- ### CI/CD (Continuous Integration/Continuous Deployment)
377
-
378
- **Automated processes** for building, testing, and deploying code changes.
379
-
380
- ---
381
-
382
- ### CLI (Command Line Interface)
383
-
384
- **Text-based interface** for interacting with software. Agent Assistant provides CLI for installation and management.
385
-
386
- ```bash
387
- agent-assistant install cursor
388
- agent-assistant list
389
- ```
390
-
391
- ---
392
-
393
- ### E2E (End-to-End) Testing
394
-
395
- **Testing the complete flow** of an application from start to finish, simulating real user scenarios.
396
-
397
- ---
398
-
399
- ### MCP (Model Context Protocol)
400
-
401
- A **standard protocol** for AI tool integration, enabling consistent behavior across different AI platforms.
402
-
403
- ---
404
-
405
- ### OKR (Objectives and Key Results)
406
-
407
- A **goal-setting framework** defining objectives (goals) and measurable key results (metrics).
408
-
409
- ---
410
-
411
- ### OWASP (Open Web Application Security Project)
412
-
413
- An **organization providing** security best practices, vulnerability classifications, and testing methodologies.
414
-
415
- ---
416
-
417
- ### PRD (Product Requirements Document)
418
-
419
- A **document specifying** what a product should do, including features, requirements, and success criteria.
420
-
421
- ---
422
-
423
- ## 7. Agent Roles
424
-
425
- | Agent ID | Role Title | Primary Function |
426
- |----------|------------|------------------|
427
- | `backend-engineer` | Principal Backend Architect | Server-side logic, APIs |
428
- | `frontend-engineer` | Principal Frontend Architect | UI, React, accessibility |
429
- | `tech-lead` | Implementation Orchestrator | Route tasks, ensure quality |
430
- | `database-architect` | Data Architecture Specialist | Schema, migrations |
431
- | `security-engineer` | Security Analyst | OWASP, vulnerabilities |
432
- | `devops-engineer` | DevOps Specialist | CI/CD, infrastructure |
433
- | `tester` | QA Specialist | Test strategy, automation |
434
- | `reviewer` | Code Review Specialist | Standards, best practices |
435
- | `debugger` | Debug Specialist | Root cause analysis |
436
- | `planner` | Technical Planner | Implementation plans |
437
- | `brainstormer` | Requirements Analyst | Discovery, clarification |
438
- | `business-analyst` | Business Analysis Specialist | User stories, stakeholders |
439
- | `designer` | UI/UX Design Specialist | Design systems, accessibility |
440
- | `docs-manager` | Documentation Specialist | README, API docs |
441
- | `performance-engineer` | Performance Specialist | Profiling, optimization |
442
- | `researcher` | Technical Research Specialist | Patterns, best practices |
443
- | `scouter` | Codebase Exploration Specialist | Code analysis, patterns |
444
- | `project-manager` | Project Delivery Specialist | Sprints, risks |
445
- | `mobile-engineer` | Mobile Development Specialist | iOS, Android, React Native |
446
- | `game-engineer` | Game Development Specialist | Game loop, 3D graphics |
447
-
448
- ---
449
-
450
- ## 8. Skill Domains
451
-
452
- | Domain ID | Name | Skill Count |
453
- |-----------|------|-------------|
454
- | `backend` | Backend Development | 20 |
455
- | `frontend` | Frontend Development | 18 |
456
- | `architecture` | System Architecture | 9 |
457
- | `quality` | Quality Assurance | 17 |
458
- | `security` | Security Engineering | 6 |
459
- | `design` | UI/UX Design | 10 |
460
- | `planning` | Planning & Analysis | 9 |
461
- | `devops` | DevOps & Deployment | 15 |
462
- | `data` | Data & Database | 7 |
463
- | `performance` | Performance Engineering | 1 |
464
- | `research` | Research & Documentation | 11 |
465
- | `mobile` | Mobile Development | 8 |
466
- | `gaming` | Game Development | 3 |
467
- | `management` | Project Management | 4 |
468
- | `ai_ml` | AI/ML Engineering | 13 |
469
- | `cloud` | Cloud & Infrastructure | 11 |
470
- | `languages` | Programming Languages | 17 |
471
- | `tools` | Tools & Utilities | 31 |
472
- | `mcp` | Model Context Protocol | 8 |
473
-
474
- ---
475
-
476
- ## 9. Command Reference
477
-
478
- | Command | Purpose | Variants |
479
- |---------|---------|----------|
480
- | `/cook` | Implement features | `:fast`, `:hard`, `:focus` |
481
- | `/code` | Generate code snippets | `:fast`, `:hard`, `:focus` |
482
- | `/fix` | Fix bugs | `:fast`, `:hard`, `:focus` |
483
- | `/test` | Generate tests | `:fast`, `:hard`, `:focus` |
484
- | `/review` | Code review | `:fast`, `:hard` |
485
- | `/debug` | Debug issues | `:fast`, `:hard`, `:focus` |
486
- | `/plan` | Create implementation plans | `:fast`, `:hard`, `:focus` |
487
- | `/brainstorm` | Discover requirements | `:fast`, `:hard` |
488
- | `/design` | UI/UX design | `:fast`, `:hard`, `:focus` |
489
- | `/docs` | Generate documentation | `:core`, `:business`, `:audit` |
490
- | `/report` | Create/update reports, summaries | `:fast`, `:hard`, `:focus` |
491
- | `/deploy` | Deployment operations | `:check`, `:preview`, `:production`, `:rollback` |
492
- | `/ask` | Q&A about codebase | `:fast`, `:hard` |
493
- | `/auto` | Auto-detect best command | — |
494
-
495
- ---
496
-
497
- ## 10. File Patterns
498
-
499
- | Type | Pattern | Example |
500
- |------|---------|---------|
501
- | Agent | `agents/{kebab-case}.md` | `agents/backend-engineer.md` |
502
- | Command Router | `commands/{command}.md` | `commands/cook.md` |
503
- | Command Variant | `commands/{command}/{variant}.md` | `commands/cook/hard.md` |
504
- | Skill | `skills/{skill-id}/SKILL.md` | `skills/api-patterns/SKILL.md` |
505
- | Rule | `rules/{UPPER-CASE}.md` | `rules/BOOTSTRAP.md` |
506
- | Matrix Domain | `matrix-skills/{domain}.yaml` | `matrix-skills/backend.yaml` |
507
- | Core Doc | `documents/knowledge-{topic}.md` | `documents/knowledge-overview.md` |
508
- | Business Doc | `documents/business/business-{topic}.md` | `documents/business/business-prd.md` |
509
- | Audit Doc | `documents/audit/audit-{topic}.md` | `documents/audit/audit-security.md` |
510
- | Report | `reports/{type}s/{TYPE}-{feature}.md` | `reports/plans/PLAN-auth.md` |
511
-
512
- ---
513
-
514
- ## 11. Abbreviations
515
-
516
- | Abbreviation | Full Form |
517
- |--------------|-----------|
518
- | ADR | Architecture Decision Record |
519
- | API | Application Programming Interface |
520
- | CI/CD | Continuous Integration/Continuous Deployment |
521
- | CLI | Command Line Interface |
522
- | E2E | End-to-End |
523
- | FR | Functional Requirement |
524
- | KPI | Key Performance Indicator |
525
- | MCP | Model Context Protocol |
526
- | MoSCoW | Must-Should-Could-Won't |
527
- | NFR | Non-Functional Requirement |
528
- | NPS | Net Promoter Score |
529
- | OKR | Objectives and Key Results |
530
- | OWASP | Open Web Application Security Project |
531
- | PRD | Product Requirements Document |
532
- | QA | Quality Assurance |
533
- | ROI | Return on Investment |
534
- | SOC2 | Service Organization Control 2 |
535
- | UI/UX | User Interface/User Experience |
536
- | WCAG | Web Content Accessibility Guidelines |
537
-
538
- ---
539
-
540
- ## 12. Related Documentation
541
-
542
- | Document | Purpose |
543
- |----------|---------|
544
- | `business-prd.md` | Product requirements |
545
- | `business-features.md` | Feature specifications |
546
- | `business-workflows.md` | User journeys |
547
- | `knowledge-overview.md` | Technical overview |
548
- | `knowledge-domain.md` | Data models |
549
-
550
- ---
551
-
552
- **Document Classification**: Business Glossary
553
- **Terms Defined**: 80+
554
- **Review Status**: Complete