@adityaaria/agent-os 1.0.0

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 (129) hide show
  1. package/AGENTS.md +41 -0
  2. package/AGENT_OS_BOOTSTRAP.md +29 -0
  3. package/ENTRYPOINT.md +118 -0
  4. package/LICENSE +21 -0
  5. package/README.md +230 -0
  6. package/adapters/antigravity/README.md +9 -0
  7. package/adapters/antigravity/plugin.json +13 -0
  8. package/adapters/claude/CLAUDE.md +16 -0
  9. package/adapters/claude/README.md +10 -0
  10. package/adapters/codex/README.md +20 -0
  11. package/adapters/cursor/README.md +9 -0
  12. package/adapters/cursor/agent-os.rules.md +18 -0
  13. package/bin/agent-os.mjs +98 -0
  14. package/core/AUTO_PROJECT_DETECTOR.md +99 -0
  15. package/core/COMPLIANCE_GATE.md +19 -0
  16. package/core/FRAMEWORK_AUDITOR.md +35 -0
  17. package/core/KNOWLEDGE_REGENERATOR.md +30 -0
  18. package/core/KNOWLEDGE_VALIDATOR.md +29 -0
  19. package/core/PROJECT_CONTEXT_STANDARD.md +19 -0
  20. package/core/QUALITY_GATES.md +42 -0
  21. package/core/REPORTING_STANDARD.md +47 -0
  22. package/core/SKILL_ORCHESTRATOR.md +63 -0
  23. package/core/TASK_ROUTER.md +33 -0
  24. package/core/TRACEABILITY_STANDARD.md +40 -0
  25. package/package.json +28 -0
  26. package/scripts/install.mjs +690 -0
  27. package/scripts/lib/cli-utils.mjs +148 -0
  28. package/scripts/lib/run-utils.mjs +185 -0
  29. package/scripts/lib/telegram-audit-log.mjs +50 -0
  30. package/scripts/lib/telegram-bot-utils.mjs +413 -0
  31. package/scripts/lib/telegram-utils.mjs +127 -0
  32. package/scripts/orchestrate.mjs +230 -0
  33. package/scripts/quality-static.mjs +19 -0
  34. package/scripts/report-export.mjs +86 -0
  35. package/scripts/report-notify.mjs +169 -0
  36. package/scripts/run-execution.mjs +83 -0
  37. package/scripts/run-list.mjs +44 -0
  38. package/scripts/run-status.mjs +38 -0
  39. package/scripts/run-step.mjs +173 -0
  40. package/scripts/setup-wizard.mjs +116 -0
  41. package/scripts/sync-runtime.mjs +87 -0
  42. package/scripts/telegram-bot.mjs +88 -0
  43. package/scripts/telegram-check.mjs +94 -0
  44. package/scripts/telegram-poll.mjs +176 -0
  45. package/scripts/validate-framework.mjs +290 -0
  46. package/skills/api-contract-audit/SKILL.md +26 -0
  47. package/skills/api-contract-audit/checklist.md +16 -0
  48. package/skills/api-contract-audit/examples.md +3 -0
  49. package/skills/api-contract-audit/report-template.md +39 -0
  50. package/skills/api-contract-audit/workflow.md +15 -0
  51. package/skills/audit/SKILL.md +28 -0
  52. package/skills/audit/checklist.md +18 -0
  53. package/skills/audit/examples.md +26 -0
  54. package/skills/audit/report-template.md +39 -0
  55. package/skills/audit/workflow.md +15 -0
  56. package/skills/bug-fix/SKILL.md +25 -0
  57. package/skills/bug-fix/checklist.md +18 -0
  58. package/skills/bug-fix/examples.md +26 -0
  59. package/skills/bug-fix/report-template.md +39 -0
  60. package/skills/bug-fix/workflow.md +10 -0
  61. package/skills/database-impact-analysis/SKILL.md +27 -0
  62. package/skills/database-impact-analysis/checklist.md +16 -0
  63. package/skills/database-impact-analysis/examples.md +3 -0
  64. package/skills/database-impact-analysis/report-template.md +39 -0
  65. package/skills/database-impact-analysis/workflow.md +14 -0
  66. package/skills/enhancement/SKILL.md +27 -0
  67. package/skills/enhancement/checklist.md +19 -0
  68. package/skills/enhancement/examples.md +26 -0
  69. package/skills/enhancement/report-template.md +39 -0
  70. package/skills/enhancement/workflow.md +10 -0
  71. package/skills/enterprise-certification/SKILL.md +19 -0
  72. package/skills/enterprise-certification/checklist.md +17 -0
  73. package/skills/enterprise-certification/report-template.md +39 -0
  74. package/skills/enterprise-certification/workflow.md +14 -0
  75. package/skills/knowledge-evolution/SKILL.md +23 -0
  76. package/skills/knowledge-evolution/checklist.md +17 -0
  77. package/skills/knowledge-evolution/report-template.md +39 -0
  78. package/skills/knowledge-evolution/workflow.md +14 -0
  79. package/skills/new-page/SKILL.md +26 -0
  80. package/skills/new-page/checklist.md +21 -0
  81. package/skills/new-page/examples.md +26 -0
  82. package/skills/new-page/report-template.md +39 -0
  83. package/skills/new-page/workflow.md +10 -0
  84. package/skills/project-onboarding/SKILL.md +27 -0
  85. package/skills/project-onboarding/checklist.md +18 -0
  86. package/skills/project-onboarding/examples.md +26 -0
  87. package/skills/project-onboarding/report-template.md +39 -0
  88. package/skills/project-onboarding/workflow.md +9 -0
  89. package/skills/release-readiness/SKILL.md +27 -0
  90. package/skills/release-readiness/checklist.md +16 -0
  91. package/skills/release-readiness/examples.md +3 -0
  92. package/skills/release-readiness/report-template.md +39 -0
  93. package/skills/release-readiness/workflow.md +14 -0
  94. package/skills/repository-health/SKILL.md +26 -0
  95. package/skills/repository-health/checklist.md +20 -0
  96. package/skills/repository-health/report-template.md +39 -0
  97. package/skills/repository-health/workflow.md +14 -0
  98. package/skills/selenium-e2e/SKILL.md +83 -0
  99. package/skills/selenium-e2e/checklist.md +29 -0
  100. package/skills/selenium-e2e/examples.md +26 -0
  101. package/skills/selenium-e2e/report-template.md +39 -0
  102. package/skills/selenium-e2e/workflow.md +9 -0
  103. package/skills/self-audit/SKILL.md +19 -0
  104. package/skills/self-audit/checklist.md +14 -0
  105. package/skills/self-audit/report-template.md +39 -0
  106. package/skills/self-audit/workflow.md +11 -0
  107. package/skills/traceability-analysis/SKILL.md +25 -0
  108. package/skills/traceability-analysis/checklist.md +17 -0
  109. package/skills/traceability-analysis/examples.md +3 -0
  110. package/skills/traceability-analysis/report-template.md +39 -0
  111. package/skills/traceability-analysis/workflow.md +17 -0
  112. package/templates/API_RULES.md +20 -0
  113. package/templates/ARCHITECTURE.md +20 -0
  114. package/templates/BUSINESS_FLOW.md +20 -0
  115. package/templates/COMMANDS.md +20 -0
  116. package/templates/DATABASE_RULES.md +20 -0
  117. package/templates/DEPENDENCY_MAP.md +20 -0
  118. package/templates/DEPLOYMENT_RULES.md +20 -0
  119. package/templates/DOMAIN_MODEL.md +20 -0
  120. package/templates/FE_BE_TRACEABILITY.md +20 -0
  121. package/templates/KNOWN_LIMITATIONS.md +20 -0
  122. package/templates/MODULE_CATALOG.md +20 -0
  123. package/templates/PROJECT_PROFILE.md +20 -0
  124. package/templates/RISK_REGISTER.md +20 -0
  125. package/templates/SECURITY_RULES.md +20 -0
  126. package/templates/TECHNICAL_DEBT.md +20 -0
  127. package/templates/TECH_STACK.md +20 -0
  128. package/templates/TESTING_RULES.md +47 -0
  129. package/templates/UI_UX_RULES.md +20 -0
@@ -0,0 +1,15 @@
1
+ # AUDIT WORKFLOW
2
+
3
+ You MUST execute these explicit steps sequentially:
4
+
5
+ 1. **Pre Validation** (Verify `traceability-analysis`, `api-contract-audit`, and `database-impact-analysis` knowledge dependencies exist)
6
+ 2. **Target Identification** (Identify the scope of the audit)
7
+ 3. **Architecture Audit** (Check structural integrity)
8
+ 4. **Security Audit** (Check vulnerabilities)
9
+ 5. **Performance Audit** (Check efficiency)
10
+ 6. **Maintainability Audit** (Check tech debt)
11
+ 7. **Scalability Audit** (Check bottleneck risks)
12
+ 8. **Evidence Collection** (Gather code snippets, traces)
13
+ 9. **Execution Validation** (Ensure findings categorize explicit Risk severity and confidence levels)
14
+ 10. **Generate Enterprise Architecture Audit Report**
15
+ 11. **Post Validation** (Verify report conforms to Enterprise Standard)
@@ -0,0 +1,25 @@
1
+ # BUG-FIX SKILL
2
+
3
+ ## Purpose
4
+ To autonomously detect the root cause of an anomaly, enforce strict root cause analysis, and apply a minimal, safe resolution with full traceability.
5
+
6
+ ## Responsibilities
7
+ - Execute a strict Root Cause Analysis (RCA) before proposing any fix.
8
+ - Categorize RCA strictly into: Frontend, Backend, API Contract, Database, Infrastructure, or Data Issue.
9
+ - Invoke `traceability-analysis` internally to map the impact.
10
+
11
+ ## Workflow
12
+ Follow the detailed workflow in `workflow.md` for this skill.
13
+
14
+ ## Required Inputs
15
+ Minimal Prompting: `BUG: [Description of issue]`
16
+
17
+ ## Expected Outputs
18
+ Root Cause Analysis, Traceability Matrix, targeted fix, Validation Result, and Execution Report.
19
+
20
+ ## Execution Rules
21
+ - **NEVER** write a fix before RCA is completed and categorized.
22
+ - Collect explicit Evidence (Logs, Screenshots, API Responses) proving the bug exists and the fix resolves it.
23
+
24
+ ## Minimal Prompting Target
25
+ - Agent parses "BUG: submit error" and autonomously finds the corresponding component, traces the API, checks the DB, and isolates the failure point.
@@ -0,0 +1,18 @@
1
+ # BUG-FIX CHECKLIST
2
+
3
+ ## Entry Criteria
4
+ - [ ] Bug trigger detected via minimal prompt.
5
+
6
+ ## Execution
7
+ - [ ] Evidence of bug collected.
8
+ - [ ] Root Cause categorized.
9
+ - [ ] Fix applied without massive refactoring.
10
+ - [ ] Regression test executed.
11
+ - [ ] **Knowledge Impact Assessment completed.**
12
+ - [ ] **Business/Workflow/Technical Knowledge updated (if impacted).**
13
+ - [ ] **Knowledge Version bumped (if impacted).**
14
+
15
+ ## Exit Criteria / Definition of Done
16
+ - [ ] Execution Report generated.
17
+ - [ ] Fix validated with evidence.
18
+ - [ ] Quality Gate set to PASS.
@@ -0,0 +1,26 @@
1
+ # BUG-FIX EXAMPLES
2
+
3
+ ### Example 1
4
+ ```txt
5
+ BUG: User gets 500 error when submitting form with empty optional field.
6
+ ```
7
+
8
+ ### Example 2
9
+ ```txt
10
+ BUG: Pagination breaks on page 3 in the admin panel.
11
+ ```
12
+
13
+ ### Example 3
14
+ ```txt
15
+ BUG: CSS grid collapses on mobile devices.
16
+ ```
17
+
18
+ ### Example 4
19
+ ```txt
20
+ BUG: Transaction fails intermittently due to timeout.
21
+ ```
22
+
23
+ ### Example 5
24
+ ```txt
25
+ BUG: Auth token expires but does not redirect to login.
26
+ ```
@@ -0,0 +1,39 @@
1
+ # Executive Summary
2
+ * **Trigger Detected**: N/A. Reason: Populated during skill execution.
3
+ * **Purpose**: N/A. Reason: Populated during skill execution.
4
+
5
+ # Scope
6
+ * **Target**: N/A. Reason: Populated during skill execution.
7
+
8
+ # Knowledge Confidence
9
+ * **Score**: N/A. Reason: Populated during skill execution.
10
+
11
+ # Knowledge Classification
12
+ * **Classification**: N/A. Reason: Populated during skill execution.
13
+
14
+ # Traceability Matrix
15
+ | Layer | File | Function | Notes |
16
+ | ----- | ---- | -------- | ----- |
17
+ | Framework | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. |
18
+
19
+ # Evidence
20
+ * N/A. Reason: Populated during skill execution.
21
+
22
+ # Root Cause
23
+ * N/A. Reason: Populated during skill execution.
24
+
25
+ # Impact
26
+ * N/A. Reason: Populated during skill execution.
27
+
28
+ # Recommendation
29
+ * **Quick Win**: N/A. Reason: Populated during skill execution.
30
+ * **Long Term Improvement**: N/A. Reason: Populated during skill execution.
31
+
32
+ # Quality Gate
33
+ * N/A. Reason: Populated during skill execution.
34
+
35
+ # Enterprise Readiness
36
+ * N/A. Reason: Populated during skill execution.
37
+
38
+ # Final Decision
39
+ N/A. Reason: Populated during skill execution.
@@ -0,0 +1,10 @@
1
+ # Bug Fix Workflow
2
+
3
+ 1. **Pre-flight Check**: Parse the bug report and verify scope.
4
+ 2. **Knowledge Retrieval**: Load applicable `.agent-os/knowledge/` (Business Rules, Workflows, Technical).
5
+ 3. **Traceability Mapping**: Trace the issue across the unified 10-layer chain.
6
+ 4. **Root Cause Analysis**: Explicitly diagnose the failure point.
7
+ 5. **Implementation**: Fix the defect.
8
+ 6. **Knowledge Impact Assessment**: Explicitly determine if Business Rules, Workflows, APIs, DTOs, Entities, Database, or User Journeys changed.
9
+ 7. **Execution Validation**: Verify the fix via testing.
10
+ 8. **Final Reporting**: Generate the standard Report Template.
@@ -0,0 +1,27 @@
1
+ # DATABASE-IMPACT-ANALYSIS SKILL
2
+
3
+ ## Purpose
4
+ To audit the impact of requested changes on the database layer, specifically analyzing schema modifications, migrations, constraints, and rollback feasibility.
5
+
6
+ ## Responsibilities
7
+ - Audit Schema Impact.
8
+ - Audit Migration Impact.
9
+ - Audit Foreign Key Impact.
10
+ - Audit Index Impact.
11
+ - Assess Rollback Impact/Readiness.
12
+
13
+ ## Workflow
14
+ Follow the detailed workflow in `workflow.md` for this skill.
15
+
16
+ ## Required Inputs
17
+ Minimal Prompting: `AUDIT: Database Impact [Entity/Module]`
18
+
19
+ ## Expected Outputs
20
+ Database Impact Assessment Report.
21
+
22
+ ## Execution Rules
23
+ - Always identify existing indices and FKs before proposing changes.
24
+ - Ensure rollback strategies are documented for any destructive migration.
25
+
26
+ ## Minimal Prompting Target
27
+ - Agent automatically traces the entities involved and performs the audit without being explicitly told which tables are affected.
@@ -0,0 +1,16 @@
1
+ # DATABASE-IMPACT-ANALYSIS CHECKLIST
2
+
3
+ ## Entry Criteria
4
+ - [ ] Target Entity or Database change is identified.
5
+
6
+ ## Execution
7
+ - [ ] Schema impact audited.
8
+ - [ ] Migration risk audited.
9
+ - [ ] Foreign Key impact audited.
10
+ - [ ] Index impact audited.
11
+ - [ ] Rollback strategy defined.
12
+
13
+ ## Exit Criteria / Definition of Done
14
+ - [ ] Database Impact Assessment Report generated.
15
+ - [ ] Severity classified for all findings.
16
+ - [ ] Quality Gate set to PASS.
@@ -0,0 +1,3 @@
1
+ # EXAMPLES
2
+
3
+ To be populated by Agent OS automatically based on project context.
@@ -0,0 +1,39 @@
1
+ # Executive Summary
2
+ * **Trigger Detected**: N/A. Reason: Populated during skill execution.
3
+ * **Purpose**: N/A. Reason: Populated during skill execution.
4
+
5
+ # Scope
6
+ * **Target**: N/A. Reason: Populated during skill execution.
7
+
8
+ # Knowledge Confidence
9
+ * **Score**: N/A. Reason: Populated during skill execution.
10
+
11
+ # Knowledge Classification
12
+ * **Classification**: N/A. Reason: Populated during skill execution.
13
+
14
+ # Traceability Matrix
15
+ | Layer | File | Function | Notes |
16
+ | ----- | ---- | -------- | ----- |
17
+ | Framework | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. |
18
+
19
+ # Evidence
20
+ * N/A. Reason: Populated during skill execution.
21
+
22
+ # Root Cause
23
+ * N/A. Reason: Populated during skill execution.
24
+
25
+ # Impact
26
+ * N/A. Reason: Populated during skill execution.
27
+
28
+ # Recommendation
29
+ * **Quick Win**: N/A. Reason: Populated during skill execution.
30
+ * **Long Term Improvement**: N/A. Reason: Populated during skill execution.
31
+
32
+ # Quality Gate
33
+ * N/A. Reason: Populated during skill execution.
34
+
35
+ # Enterprise Readiness
36
+ * N/A. Reason: Populated during skill execution.
37
+
38
+ # Final Decision
39
+ N/A. Reason: Populated during skill execution.
@@ -0,0 +1,14 @@
1
+ # DATABASE-IMPACT-ANALYSIS WORKFLOW
2
+
3
+ You MUST execute these explicit steps sequentially:
4
+
5
+ 1. **Pre Validation** (Verify `traceability-analysis` coverage exists)
6
+ 2. **Entity Detection** (Identify target models/entities)
7
+ 3. **Schema Audit** (Assess required column/type changes)
8
+ 4. **Migration Audit** (Determine if migration is destructive)
9
+ 5. **Foreign Key Audit** (Assess impact on relationships/cascades)
10
+ 6. **Index Audit** (Assess performance implications)
11
+ 7. **Rollback Assessment** (Define downgrade strategy)
12
+ 8. **Execution Validation** (Ensure findings categorize explicit Risk severity)
13
+ 9. **Generate Assessment Report**
14
+ 10. **Post Validation** (Verify report conforms to Enterprise Standard)
@@ -0,0 +1,27 @@
1
+ # ENHANCEMENT SKILL
2
+
3
+ ## Purpose
4
+ To autonomously add new features or modify existing functionality safely, strictly enforcing the principle of DRY (Don't Repeat Yourself) through mandatory Component Reuse Validation.
5
+
6
+ ## Responsibilities
7
+ - Execute Component Reuse Validation before writing any new code.
8
+ - Analyze existing Components, Services, APIs, and Modules to find reusable logic.
9
+ - Implement the requested feature adhering to established architectural patterns.
10
+ - Ensure backward compatibility.
11
+
12
+ ## Workflow
13
+ Follow the detailed workflow in `workflow.md` for this skill.
14
+
15
+ ## Required Inputs
16
+ Minimal Prompting: `ENHANCEMENT: [Description of feature]`
17
+
18
+ ## Expected Outputs
19
+ Reuse Analysis Report, Traceability Matrix, updated code, Validation Results, and Execution Report.
20
+
21
+ ## Execution Rules
22
+ - **FORBIDDEN**: Creating a duplicate implementation (e.g., a new DatePicker or a new HTTP client) if one already exists in the repository.
23
+ - Must invoke `traceability-analysis` to map the impacted layers.
24
+ - Collect explicit Evidence (Logs, Screenshots, UI changes).
25
+
26
+ ## Minimal Prompting Target
27
+ - Agent autonomously parses "ENHANCEMENT: add export button", scans the repo for existing `ExportService` or `Button` components, and implements the feature without duplicate logic.
@@ -0,0 +1,19 @@
1
+ # ENHANCEMENT CHECKLIST
2
+
3
+ ## Entry Criteria
4
+ - [ ] Enhancement trigger detected via minimal prompt.
5
+
6
+ ## Execution
7
+ - [ ] Component Reuse Validation completed.
8
+ - [ ] Existing Components/Services utilized (no duplicates).
9
+ - [ ] Code implemented following existing architecture.
10
+ - [ ] Regression and unit tests executed.
11
+ - [ ] **Knowledge Impact Assessment completed.**
12
+ - [ ] **Business Rules updated.**
13
+ - [ ] **Workflow updated.**
14
+ - [ ] **Traceability updated.**
15
+ - [ ] **Knowledge Version updated.**
16
+
17
+ ## Exit Criteria / Definition of Done
18
+ - [ ] Execution Report generated.
19
+ - [ ] Quality Gate set to PASS.
@@ -0,0 +1,26 @@
1
+ # ENHANCEMENT EXAMPLES
2
+
3
+ ### Example 1
4
+ ```txt
5
+ ENHANCEMENT: Add CSV export to the reports table.
6
+ ```
7
+
8
+ ### Example 2
9
+ ```txt
10
+ ENHANCEMENT: Add 'Dark Mode' toggle.
11
+ ```
12
+
13
+ ### Example 3
14
+ ```txt
15
+ ENHANCEMENT: Optimize the user search query.
16
+ ```
17
+
18
+ ### Example 4
19
+ ```txt
20
+ ENHANCEMENT: Support multiple file uploads.
21
+ ```
22
+
23
+ ### Example 5
24
+ ```txt
25
+ ENHANCEMENT: Add a 'Remember Me' checkbox.
26
+ ```
@@ -0,0 +1,39 @@
1
+ # Executive Summary
2
+ * **Trigger Detected**: N/A. Reason: Populated during skill execution.
3
+ * **Purpose**: N/A. Reason: Populated during skill execution.
4
+
5
+ # Scope
6
+ * **Target**: N/A. Reason: Populated during skill execution.
7
+
8
+ # Knowledge Confidence
9
+ * **Score**: N/A. Reason: Populated during skill execution.
10
+
11
+ # Knowledge Classification
12
+ * **Classification**: N/A. Reason: Populated during skill execution.
13
+
14
+ # Traceability Matrix
15
+ | Layer | File | Function | Notes |
16
+ | ----- | ---- | -------- | ----- |
17
+ | Framework | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. |
18
+
19
+ # Evidence
20
+ * N/A. Reason: Populated during skill execution.
21
+
22
+ # Root Cause
23
+ * N/A. Reason: Populated during skill execution.
24
+
25
+ # Impact
26
+ * N/A. Reason: Populated during skill execution.
27
+
28
+ # Recommendation
29
+ * **Quick Win**: N/A. Reason: Populated during skill execution.
30
+ * **Long Term Improvement**: N/A. Reason: Populated during skill execution.
31
+
32
+ # Quality Gate
33
+ * N/A. Reason: Populated during skill execution.
34
+
35
+ # Enterprise Readiness
36
+ * N/A. Reason: Populated during skill execution.
37
+
38
+ # Final Decision
39
+ N/A. Reason: Populated during skill execution.
@@ -0,0 +1,10 @@
1
+ # Enhancement Workflow
2
+
3
+ 1. **Pre-flight Check**: Parse the enhancement request and verify scope.
4
+ 2. **Knowledge Retrieval**: Load applicable `.agent-os/knowledge/` (Business Rules, Workflows, Technical).
5
+ 3. **Traceability Mapping**: Trace the enhancement across the unified 10-layer chain.
6
+ 4. **Design**: Plan the implementation logic.
7
+ 5. **Implementation**: Build the feature.
8
+ 6. **Knowledge Impact Assessment**: Explicitly determine if Business Rules, Workflows, APIs, DTOs, Entities, Database, or User Journeys changed.
9
+ 7. **Execution Validation**: Verify the enhancement via testing.
10
+ 8. **Final Reporting**: Generate the standard Report Template.
@@ -0,0 +1,19 @@
1
+ # ENTERPRISE-CERTIFICATION SKILL
2
+
3
+ ## Purpose
4
+ To autonomously audit Agent OS itself, validating that the ecosystem strictly complies with the Enterprise Standard, Anti-Placeholder rules, and Knowledge Registries. This skill ensures the framework never regresses from Level 5 Enterprise Autonomous.
5
+
6
+ ## Responsibilities
7
+ - Audit all Skills, Workflows, Checklists, and Report Templates for placeholders.
8
+ - Audit Governance, Traceability, Versioning, and Decision registries.
9
+ - Calculate the Enterprise Compliance %.
10
+ - Assign the Certification Level (1 to 5).
11
+
12
+ ## Workflow
13
+ Follow the detailed workflow in `workflow.md` for this skill.
14
+
15
+ ## Required Inputs
16
+ Minimal Prompting: `AUDIT: Framework Compliance` or `CERTIFY: Agent OS`
17
+
18
+ ## Expected Outputs
19
+ Enterprise Compliance Report.
@@ -0,0 +1,17 @@
1
+ # ENTERPRISE-CERTIFICATION CHECKLIST
2
+
3
+ ## Entry Criteria
4
+ - [ ] Compliance trigger detected.
5
+
6
+ ## Execution
7
+ - [ ] Template Audit completed (No placeholders found).
8
+ - [ ] Governance Audit completed.
9
+ - [ ] Registry Audit completed.
10
+ - [ ] Traceability Audit completed.
11
+ - [ ] Versioning Audit completed.
12
+ - [ ] Compliance % calculated.
13
+ - [ ] Certification Level (1-5) assigned.
14
+
15
+ ## Exit Criteria / Definition of Done
16
+ - [ ] Enterprise Compliance Report generated.
17
+ - [ ] Quality Gate set to PASS.
@@ -0,0 +1,39 @@
1
+ # Executive Summary
2
+ * **Trigger Detected**: N/A. Reason: Populated during skill execution.
3
+ * **Purpose**: N/A. Reason: Populated during skill execution.
4
+
5
+ # Scope
6
+ * **Target**: N/A. Reason: Populated during skill execution.
7
+
8
+ # Knowledge Confidence
9
+ * **Score**: N/A. Reason: Populated during skill execution.
10
+
11
+ # Knowledge Classification
12
+ * **Classification**: N/A. Reason: Populated during skill execution.
13
+
14
+ # Traceability Matrix
15
+ | Layer | File | Function | Notes |
16
+ | ----- | ---- | -------- | ----- |
17
+ | Framework | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. |
18
+
19
+ # Evidence
20
+ * N/A. Reason: Populated during skill execution.
21
+
22
+ # Root Cause
23
+ * N/A. Reason: Populated during skill execution.
24
+
25
+ # Impact
26
+ * N/A. Reason: Populated during skill execution.
27
+
28
+ # Recommendation
29
+ * **Quick Win**: N/A. Reason: Populated during skill execution.
30
+ * **Long Term Improvement**: N/A. Reason: Populated during skill execution.
31
+
32
+ # Quality Gate
33
+ * N/A. Reason: Populated during skill execution.
34
+
35
+ # Enterprise Readiness
36
+ * N/A. Reason: Populated during skill execution.
37
+
38
+ # Final Decision
39
+ N/A. Reason: Populated during skill execution.
@@ -0,0 +1,14 @@
1
+ # ENTERPRISE-CERTIFICATION WORKFLOW
2
+
3
+ You MUST execute these explicit steps sequentially:
4
+
5
+ 1. **Pre Validation** (Ensure Orchestrator triggered the audit)
6
+ 2. **Template Audit** (Scan `skills/*/report-template.md` for any remaining brackets like `List explicit items`)
7
+ 3. **Governance Audit** (Verify `.agent-os/knowledge/governance/` has all 5 required rules files)
8
+ 4. **Registry Audit** (Verify `decisions`, `business-rules`, and `workflows` domains exist)
9
+ 5. **Traceability Audit** (Verify `TRACEABILITY_STANDARD.md` exists and defines the 15 layers)
10
+ 6. **Versioning Audit** (Verify `versioning-rules.md` is strictly defined)
11
+ 7. **Execution Validation** (Calculate Compliance % based on findings)
12
+ 8. **Determine Certification Level** (Evaluate if Level 5 is met based on zero-placeholders and full registry existence)
13
+ 9. **Generate Compliance Report**
14
+ 10. **Post Validation** (Verify report conforms to Enterprise Standard)
@@ -0,0 +1,23 @@
1
+ # KNOWLEDGE-EVOLUTION SKILL
2
+
3
+ ## Purpose
4
+ To maintain absolute synchronization between the Living Business Knowledge Base (`.agent-os/knowledge/`) and the actual implementation layer. It ensures that changes in code trigger immediate, version-controlled updates in business rules, workflows, and technical documentation.
5
+
6
+ ## Responsibilities
7
+ - Parse the output of the Knowledge Impact Assessment.
8
+ - Auto-update Business Domain Documents.
9
+ - Auto-update Workflow Models.
10
+ - Auto-update the Business Rule Registry.
11
+ - Auto-increment the Knowledge Version.
12
+
13
+ ## Workflow
14
+ Follow the detailed workflow in `workflow.md` for this skill.
15
+
16
+ ## Required Inputs
17
+ Triggered automatically when an operational skill answers `Yes` to any question in the Knowledge Impact Assessment.
18
+
19
+ ## Expected Outputs
20
+ Updated Knowledge files in `.agent-os/knowledge/` and a Knowledge Health Report.
21
+
22
+ ## Execution Rules
23
+ - No knowledge artifact may be overwritten without bumping the version number and logging the `Change Type` (e.g., Enhancement, Bug Fix).
@@ -0,0 +1,17 @@
1
+ # KNOWLEDGE-EVOLUTION CHECKLIST
2
+
3
+ ## Entry Criteria
4
+ - [ ] Impact Assessment trigger detected from parent skill.
5
+
6
+ ## Execution
7
+ - [ ] Business Knowledge updated.
8
+ - [ ] Workflow Knowledge updated.
9
+ - [ ] Technical Knowledge updated.
10
+ - [ ] Traceability updated.
11
+ - [ ] Knowledge Version bumped.
12
+
13
+ ## Exit Criteria / Definition of Done
14
+ - [ ] All required files physically modified in `.agent-os/knowledge/`.
15
+ - [ ] Knowledge Health Report published.
16
+ - [ ] Parent skill explicitly unblocked.
17
+ - [ ] Quality Gate set to PASS.
@@ -0,0 +1,39 @@
1
+ # Executive Summary
2
+ * **Trigger Detected**: N/A. Reason: Populated during skill execution.
3
+ * **Purpose**: N/A. Reason: Populated during skill execution.
4
+
5
+ # Scope
6
+ * **Target**: N/A. Reason: Populated during skill execution.
7
+
8
+ # Knowledge Confidence
9
+ * **Score**: N/A. Reason: Populated during skill execution.
10
+
11
+ # Knowledge Classification
12
+ * **Classification**: N/A. Reason: Populated during skill execution.
13
+
14
+ # Traceability Matrix
15
+ | Layer | File | Function | Notes |
16
+ | ----- | ---- | -------- | ----- |
17
+ | Framework | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. | N/A. Reason: Populated during skill execution. |
18
+
19
+ # Evidence
20
+ * N/A. Reason: Populated during skill execution.
21
+
22
+ # Root Cause
23
+ * N/A. Reason: Populated during skill execution.
24
+
25
+ # Impact
26
+ * N/A. Reason: Populated during skill execution.
27
+
28
+ # Recommendation
29
+ * **Quick Win**: N/A. Reason: Populated during skill execution.
30
+ * **Long Term Improvement**: N/A. Reason: Populated during skill execution.
31
+
32
+ # Quality Gate
33
+ * N/A. Reason: Populated during skill execution.
34
+
35
+ # Enterprise Readiness
36
+ * N/A. Reason: Populated during skill execution.
37
+
38
+ # Final Decision
39
+ N/A. Reason: Populated during skill execution.
@@ -0,0 +1,14 @@
1
+ # KNOWLEDGE-EVOLUTION WORKFLOW
2
+
3
+ You MUST execute these explicit steps sequentially:
4
+
5
+ 1. **Pre Validation** (Verify Change Detected from parent skill)
6
+ 2. **Impact Analysis** (Parse the Knowledge Impact Assessment answers)
7
+ 3. **Business Knowledge Update** (Modify `.agent-os/knowledge/business-domains/` if needed)
8
+ 4. **Workflow Update** (Modify `.agent-os/knowledge/workflows/` if needed)
9
+ 5. **Technical Knowledge Update** (Modify APIs/Entities if needed)
10
+ 6. **Traceability Update** (Re-link missing components)
11
+ 7. **Version Update** (Bump versions and update Changelog)
12
+ 8. **Execution Validation** (Verify all required registries have been modified)
13
+ 9. **Publish** (Save all files and output Knowledge Health Report)
14
+ 10. **Post Validation** (Confirm Parent Skill can now pass its Quality Gate)
@@ -0,0 +1,26 @@
1
+ # NEW-PAGE SKILL
2
+
3
+ ## Purpose
4
+ To autonomously construct entirely new modules or pages from scratch by explicitly defining a robust Functional Analysis, FE Design, BE Design, and API Contract before implementation.
5
+
6
+ ## Responsibilities
7
+ - Scaffold UI structure.
8
+ - Define routing and API contracts.
9
+ - Audit database impact of new entities.
10
+ - Produce a full Implementation Plan.
11
+
12
+ ## Workflow
13
+ Follow the detailed workflow in `workflow.md` for this skill.
14
+
15
+ ## Required Inputs
16
+ Minimal Prompting: `NEW PAGE: [Description of page or feature]`
17
+
18
+ ## Expected Outputs
19
+ A fully populated `New Feature Design Document` detailing UI, API, DTO, Entity, and Migration.
20
+
21
+ ## Execution Rules
22
+ - **NEVER** write code until the Feature Design Document is fully generated and traceability layers are established.
23
+ - Adhere to the existing atomic design and architecture.
24
+
25
+ ## Minimal Prompting Target
26
+ - Agent automatically deduces required APIs and database columns based on the feature request.
@@ -0,0 +1,21 @@
1
+ # NEW-PAGE CHECKLIST
2
+
3
+ ## Entry Criteria
4
+ - [ ] New page/feature trigger detected via minimal prompt.
5
+
6
+ ## Execution
7
+ - [ ] **Business Domain generated.**
8
+ - [ ] **Business Rules generated.**
9
+ - [ ] **Workflow generated.**
10
+ - [ ] **Actors defined.**
11
+ - [ ] Functional analysis documented.
12
+ - [ ] FE/BE design drafted.
13
+ - [ ] API Contract drafted.
14
+ - [ ] Database impact analyzed.
15
+ - [ ] Code implemented.
16
+ - [ ] **Traceability matrix generated.**
17
+ - [ ] **Knowledge Version initialized.**
18
+
19
+ ## Exit Criteria / Definition of Done
20
+ - [ ] Execution Report generated.
21
+ - [ ] Quality Gate set to PASS.
@@ -0,0 +1,26 @@
1
+ # NEW-PAGE EXAMPLES
2
+
3
+ ### Example 1
4
+ ```txt
5
+ NEW PAGE: Create an Analytics Dashboard.
6
+ ```
7
+
8
+ ### Example 2
9
+ ```txt
10
+ NEW PAGE: Build a Multi-step Onboarding Wizard.
11
+ ```
12
+
13
+ ### Example 3
14
+ ```txt
15
+ NEW PAGE: Add an Admin Settings Panel.
16
+ ```
17
+
18
+ ### Example 4
19
+ ```txt
20
+ NEW PAGE: Create a User Profile view.
21
+ ```
22
+
23
+ ### Example 5
24
+ ```txt
25
+ NEW PAGE: Implement a Checkout Flow.
26
+ ```