@akm1923main/init-project 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.
- package/QUICKSTART_CREATE_AI_PROJECT.md +52 -0
- package/README.md +48 -0
- package/index.js +219 -0
- package/package.json +24 -0
- package/templates/02_Skills/Legacy_Prompts/Architecture.md +72 -0
- package/templates/02_Skills/Legacy_Prompts/Coding_Discipline.md +283 -0
- package/templates/02_Skills/Legacy_Prompts/Generate_prd.md +129 -0
- package/templates/02_Skills/Legacy_Prompts/IDEA.md +188 -0
- package/templates/02_Skills/Legacy_Prompts/Sharder.md +359 -0
- package/templates/02_Skills/agents/Architect.md +453 -0
- package/templates/02_Skills/agents/Business_Analyst.md +341 -0
- package/templates/02_Skills/agents/Deployment_Engineer.md +371 -0
- package/templates/02_Skills/agents/DevOps_Engineer.md +356 -0
- package/templates/02_Skills/agents/Documentation_Writer.md +371 -0
- package/templates/02_Skills/agents/Idea_Analyst.md +334 -0
- package/templates/02_Skills/agents/Master_Orchestrator.md +197 -0
- package/templates/02_Skills/agents/Performance_Engineer.md +316 -0
- package/templates/02_Skills/agents/Product_Manager.md +344 -0
- package/templates/02_Skills/agents/Refactor_Specialist.md +8 -0
- package/templates/02_Skills/agents/Security_Engineer.md +360 -0
- package/templates/02_Skills/agents/Staff_Engineer.md +306 -0
- package/templates/02_Skills/agents/Testing_Engineer.md +312 -0
- package/templates/02_Skills/workflows/architecture_generation_workflow.md +73 -0
- package/templates/02_Skills/workflows/business_analysis_workflow.md +70 -0
- package/templates/02_Skills/workflows/deployment_workflow.md +31 -0
- package/templates/02_Skills/workflows/devops_setup_workflow.md +30 -0
- package/templates/02_Skills/workflows/documentation_workflow.md +352 -0
- package/templates/02_Skills/workflows/idea_refinement_workflow.md +106 -0
- package/templates/02_Skills/workflows/performance_review_workflow.md +29 -0
- package/templates/02_Skills/workflows/prd_generation_workflow.md +83 -0
- package/templates/02_Skills/workflows/refactor_workflow.md +35 -0
- package/templates/02_Skills/workflows/security_audit_workflow.md +30 -0
- package/templates/02_Skills/workflows/task_execution_workflow.md +33 -0
- package/templates/02_Skills/workflows/task_generation_workflow.md +61 -0
- package/templates/02_Skills/workflows/testing_workflow.md +31 -0
- package/templates/02_Skills/workflows/workflow_governance_rules.md +112 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
|
|
2
|
+
# ๐งช Testing Workflow (Verification Layer)
|
|
3
|
+
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Entry Preconditions
|
|
7
|
+
|
|
8
|
+
- Implementation stable
|
|
9
|
+
- No blocked critical tasks
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Structured Execution
|
|
14
|
+
|
|
15
|
+
## Step 1: Trace FR โ Task โ Code
|
|
16
|
+
|
|
17
|
+
## Step 2: Validate acceptance criteria
|
|
18
|
+
|
|
19
|
+
## Step 3: Edge case matrix
|
|
20
|
+
|
|
21
|
+
## Step 4: Regression risk scan
|
|
22
|
+
|
|
23
|
+
## Step 5: Risk classification
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# Exit Validation
|
|
28
|
+
|
|
29
|
+
- [ ] All FR covered
|
|
30
|
+
- [ ] Edge cases tested
|
|
31
|
+
- [ ] Risk level assigned
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
|
|
2
|
+
# ๐ Workflow Governance Rules (AI-OS Core Authority)
|
|
3
|
+
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 1. Purpose
|
|
7
|
+
|
|
8
|
+
This document defines the execution constitution of the AI-OS.
|
|
9
|
+
|
|
10
|
+
No agent may violate these rules.
|
|
11
|
+
|
|
12
|
+
This file governs:
|
|
13
|
+
|
|
14
|
+
- Phase order
|
|
15
|
+
- Artifact integrity
|
|
16
|
+
- Escalation protocol
|
|
17
|
+
- State updates
|
|
18
|
+
- Scope control
|
|
19
|
+
- Resume safety
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
# 2. Canonical Phase Order (STRICT)
|
|
24
|
+
|
|
25
|
+
1. Idea Refinement
|
|
26
|
+
2. Business Analysis
|
|
27
|
+
3. PRD Generation
|
|
28
|
+
4. Architecture Generation
|
|
29
|
+
5. Task Generation
|
|
30
|
+
6. Task Execution
|
|
31
|
+
7. Testing
|
|
32
|
+
8. Security Audit
|
|
33
|
+
9. Performance Review
|
|
34
|
+
10. DevOps Setup
|
|
35
|
+
11. Deployment
|
|
36
|
+
|
|
37
|
+
Skipping phases requires explicit justification logged in PROGRESS_LOG.md.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
# 3. Entry Gate Rule
|
|
42
|
+
|
|
43
|
+
No workflow may begin unless:
|
|
44
|
+
|
|
45
|
+
- Required upstream artifact exists
|
|
46
|
+
- Upstream artifact is complete
|
|
47
|
+
- PROJECT_STATE.md reflects prior phase completion
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
# 4. Exit Gate Rule
|
|
52
|
+
|
|
53
|
+
No workflow may conclude unless:
|
|
54
|
+
|
|
55
|
+
- Artifact generated
|
|
56
|
+
- Exit checklist validated
|
|
57
|
+
- Escalations resolved
|
|
58
|
+
- PROJECT_STATE.md updated
|
|
59
|
+
- PROGRESS_LOG.md appended
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
# 5. Escalation Protocol
|
|
64
|
+
|
|
65
|
+
If contradiction detected:
|
|
66
|
+
|
|
67
|
+
- Escalate to upstream owner
|
|
68
|
+
- Log issue
|
|
69
|
+
- Do NOT silently modify artifact
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
# 6. Scope Protection
|
|
74
|
+
|
|
75
|
+
Agents must:
|
|
76
|
+
|
|
77
|
+
- Operate only within assigned scope
|
|
78
|
+
- Never introduce speculative changes
|
|
79
|
+
- Never modify upstream documents
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
# 7. Resume Integrity
|
|
84
|
+
|
|
85
|
+
On resume:
|
|
86
|
+
|
|
87
|
+
Read in order:
|
|
88
|
+
|
|
89
|
+
1. PROJECT_STATE.md
|
|
90
|
+
2. PROGRESS_LOG.md
|
|
91
|
+
3. Current phase artifact
|
|
92
|
+
4. Relevant workflow file
|
|
93
|
+
|
|
94
|
+
Never restart blindly.
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
# 8. Anti-Corruption Rules
|
|
99
|
+
|
|
100
|
+
Forbidden:
|
|
101
|
+
|
|
102
|
+
- Placeholder text
|
|
103
|
+
- TODO markers
|
|
104
|
+
- Vague language
|
|
105
|
+
- Partial artifact generation
|
|
106
|
+
- Silent architecture change
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
# 9. Authority
|
|
111
|
+
|
|
112
|
+
This file supersedes all agent-level instructions.
|