@jadeit/forge-ai 0.0.0 → 1.2.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 (49) hide show
  1. package/agents/build-agent.md +221 -0
  2. package/agents/deploy-agent.md +256 -0
  3. package/agents/design-agent.md +221 -0
  4. package/agents/feature-dev/approach.md +169 -0
  5. package/agents/feature-dev/clarify.md +131 -0
  6. package/agents/feature-dev/discover.md +113 -0
  7. package/agents/feature-dev/explore.md +124 -0
  8. package/agents/feature-dev/implement.md +200 -0
  9. package/agents/feature-dev/review.md +205 -0
  10. package/agents/feature-dev/summarise.md +187 -0
  11. package/agents/feature-dev/validate.md +211 -0
  12. package/agents/forge-orchestrator.md +188 -0
  13. package/agents/maintain-agent.md +251 -0
  14. package/agents/plan-agent.md +181 -0
  15. package/agents/test-agent.md +215 -0
  16. package/commands/forge-1-plan.md +48 -0
  17. package/commands/forge-2-design.md +51 -0
  18. package/commands/forge-3-build-1-discover.md +34 -0
  19. package/commands/forge-3-build-2-explore.md +30 -0
  20. package/commands/forge-3-build-3-clarify.md +39 -0
  21. package/commands/forge-3-build-4-approach.md +38 -0
  22. package/commands/forge-3-build-5-implement.md +38 -0
  23. package/commands/forge-3-build-6-review.md +50 -0
  24. package/commands/forge-3-build-7-validate.md +49 -0
  25. package/commands/forge-3-build-8-summarise.md +49 -0
  26. package/commands/forge-3-build.md +54 -0
  27. package/commands/forge-4-test.md +45 -0
  28. package/commands/forge-5-deploy.md +50 -0
  29. package/commands/forge-6-maintain.md +66 -0
  30. package/commands/forge-init.md +111 -0
  31. package/commands/forge-status.md +94 -0
  32. package/commands/forge.md +77 -0
  33. package/dist/index.d.ts.map +1 -1
  34. package/dist/index.js +168 -2
  35. package/dist/index.js.map +1 -1
  36. package/package.json +7 -3
  37. package/skills/forge-context-loader/SKILL.md +99 -0
  38. package/skills/forge-quality-checker/SKILL.md +227 -0
  39. package/skills/forge-state-manager/SKILL.md +235 -0
  40. package/skills/forge-template-loader/SKILL.md +162 -0
  41. package/templates/defects/DEFECT_TEMPLATE.md +96 -0
  42. package/templates/design/design-decisions.md +64 -0
  43. package/templates/design/task-list.md +56 -0
  44. package/templates/design/tasks/TASK_TEMPLATE.md +87 -0
  45. package/templates/planning/implementation-plan.md +59 -0
  46. package/templates/planning/project-scope.md +53 -0
  47. package/templates/planning/technology-and-architecture.md +80 -0
  48. package/templates/planning/user-stories.md +48 -0
  49. package/templates/testing/uat-results.md +68 -0
@@ -0,0 +1,59 @@
1
+ ---
2
+ title: Implementation Plan
3
+ phase: 1
4
+ status: in-progress
5
+ created: null
6
+ last_updated: null
7
+ phases: []
8
+ timeline_estimate: null
9
+ ---
10
+
11
+ # Implementation Plan
12
+
13
+ ## Overview
14
+
15
+ <!-- Brief description of the implementation approach -->
16
+
17
+ ## Phase Breakdown
18
+
19
+ | Phase | Description | Estimated Duration | Dependencies |
20
+ |-------|-------------|-------------------|--------------|
21
+ | 1 | Planning | | - |
22
+ | 2 | Design | | Phase 1 |
23
+ | 3 | Build | | Phase 2 |
24
+ | 4 | Test | | Phase 3 |
25
+ | 5 | Deploy | | Phase 4 |
26
+ | 6 | Maintain | | Phase 5 |
27
+
28
+ ## Phase 3 Implementation Groups
29
+
30
+ ### Group 1: Foundation
31
+ | Task | Description | Complexity |
32
+ |------|-------------|------------|
33
+ | | | |
34
+
35
+ ### Group 2: Core Features
36
+ | Task | Description | Complexity |
37
+ |------|-------------|------------|
38
+ | | | |
39
+
40
+ ### Group 3: Polish
41
+ | Task | Description | Complexity |
42
+ |------|-------------|------------|
43
+ | | | |
44
+
45
+ ## Timeline Estimate
46
+
47
+ **Total Estimated Duration:**
48
+
49
+ ## Milestones
50
+
51
+ | Milestone | Target Date | Delivered By |
52
+ |-----------|-------------|--------------|
53
+ | | | |
54
+
55
+ ## Risk Assessment
56
+
57
+ | Risk | Impact | Likelihood | Mitigation |
58
+ |------|--------|------------|------------|
59
+ | | | | |
@@ -0,0 +1,53 @@
1
+ ---
2
+ title: Project Scope
3
+ phase: 1
4
+ status: in-progress
5
+ created: null
6
+ last_updated: null
7
+ stakeholders: []
8
+ user_personas: []
9
+ high_level_goals: []
10
+ constraints: []
11
+ ---
12
+
13
+ # Project Scope
14
+
15
+ ## Aim
16
+
17
+ <!-- What the project aims to achieve -->
18
+
19
+ ## High-Level Design
20
+
21
+ <!-- Overview of the solution approach -->
22
+
23
+ ## High-Level Technology Choices
24
+
25
+ <!-- Major technologies and frameworks chosen -->
26
+
27
+ ## Stakeholders
28
+
29
+ | Name | Role | Contact |
30
+ |------|------|---------|
31
+ | | | |
32
+
33
+ ## User Personas
34
+
35
+ | Persona | Description | Needs |
36
+ |---------|-------------|-------|
37
+ | | | |
38
+
39
+ ## High-Level Goals
40
+
41
+ 1.
42
+ 2.
43
+ 3.
44
+
45
+ ## Constraints
46
+
47
+ -
48
+ -
49
+
50
+ ## Success Criteria
51
+
52
+ -
53
+ -
@@ -0,0 +1,80 @@
1
+ ---
2
+ title: Technology & Architecture
3
+ phase: 1
4
+ status: in-progress
5
+ created: null
6
+ last_updated: null
7
+ architecture_diagram: null
8
+ tech_stack: []
9
+ diagram_type: c4
10
+ ---
11
+
12
+ # Technology & Architecture
13
+
14
+ ## Architecture Diagram
15
+
16
+ ```mermaid
17
+ %% C4 Model Context Diagram
18
+ C4Context
19
+ title System Context diagram for [System Name]
20
+
21
+ Person(personAlias, "Actor Name", "Actor Description")
22
+ System(systemAlias, "System Name", "System Description")
23
+
24
+ Rel(personAlias, systemAlias, "Uses")
25
+ ```
26
+
27
+ <!-- For C4 Level 1 (Context), use:
28
+ - Person: actors/users
29
+ - System: the system being built and external systems
30
+ -->
31
+
32
+ ## Technology Stack
33
+
34
+ | Category | Technology | Version | Rationale |
35
+ |----------|------------|---------|-----------|
36
+ | Language | | | |
37
+ | Framework | | | |
38
+ | Database | | | |
39
+ | Infrastructure | | | |
40
+ | CI/CD | | | |
41
+ | Monitoring | | | |
42
+
43
+ ## Infrastructure Overview
44
+
45
+ <!-- Describe deployment environment, cloud provider, etc. -->
46
+
47
+ ## System Components
48
+
49
+ | Component | Responsibility | Technology |
50
+ |-----------|---------------|------------|
51
+ | | | |
52
+
53
+ ## Data Architecture
54
+
55
+ ### Data Stores
56
+
57
+ | Store | Purpose | Technology |
58
+ |-------|---------|------------|
59
+ | | | |
60
+
61
+ ### Data Flows
62
+
63
+ ```mermaid
64
+ flowchart LR
65
+ A[Client] --> B[API]
66
+ B --> C[(Database)]
67
+ ```
68
+
69
+ ## Security Considerations
70
+
71
+ -
72
+ -
73
+
74
+ ## Non-Functional Requirements
75
+
76
+ | Requirement | Target | Measurement |
77
+ |-------------|--------|-------------|
78
+ | Performance | | |
79
+ | Availability | | |
80
+ | Scalability | | |
@@ -0,0 +1,48 @@
1
+ ---
2
+ title: User Stories
3
+ phase: 1
4
+ status: in-progress
5
+ created: null
6
+ last_updated: null
7
+ ---
8
+
9
+ # User Stories
10
+
11
+ ## Format
12
+
13
+ "As a **[persona]**, I want **[goal]** so that **[benefit]**."
14
+
15
+ ## User Stories
16
+
17
+ ### US-001
18
+ **As a:**
19
+ **I want:**
20
+ **So that:**
21
+ **Priority:**
22
+
23
+ ### US-002
24
+ **As a:**
25
+ **I want:**
26
+ **So that:**
27
+ **Priority:**
28
+
29
+ ### US-003
30
+ **As a:**
31
+ **I want:**
32
+ **So that:**
33
+ **Priority:**
34
+
35
+ ## Story Map
36
+
37
+ | Story ID | As A | I Want | So That | Priority |
38
+ |----------|------|--------|---------|----------|
39
+ | US-001 | | | | |
40
+ | US-002 | | | | |
41
+ | US-003 | | | | |
42
+
43
+ ## Acceptance Criteria Guidelines
44
+
45
+ Each user story should have clear acceptance criteria:
46
+ - Specific and measurable
47
+ - Testable
48
+ - Agreed upon by stakeholders
@@ -0,0 +1,68 @@
1
+ ---
2
+ title: UAT Results
3
+ phase: 4
4
+ status: in-progress
5
+ created: null
6
+ last_updated: null
7
+ tester: null
8
+ environment: null
9
+ ---
10
+
11
+ # User Acceptance Testing Results
12
+
13
+ ## Test Environment
14
+
15
+ | Field | Value |
16
+ |-------|-------|
17
+ | Date | |
18
+ | Tester | |
19
+ | Environment | |
20
+ | Version | |
21
+
22
+ ## Test Summary
23
+
24
+ | Metric | Count |
25
+ |--------|-------|
26
+ | Total Test Cases | |
27
+ | Passed | |
28
+ | Failed | |
29
+ | Skipped | |
30
+ | Pass Rate | |
31
+
32
+ ## User Story Test Results
33
+
34
+ ### US-001: [User Story Title]
35
+
36
+ | Acceptance Criteria | Result | Notes |
37
+ |--------------------|--------|-------|
38
+ | | | |
39
+
40
+ **Overall:** Passed / Failed / Skipped
41
+
42
+ ---
43
+
44
+ ### US-002: [User Story Title]
45
+
46
+ | Acceptance Criteria | Result | Notes |
47
+ |--------------------|--------|-------|
48
+ | | | |
49
+
50
+ **Overall:** Passed / Failed / Skipped
51
+
52
+ ---
53
+
54
+ ## Defects Found
55
+
56
+ | Defect ID | Title | Severity | User Story | Status |
57
+ |-----------|-------|----------|------------|--------|
58
+ | | | | | |
59
+
60
+ ## Sign-Off
61
+
62
+ | Role | Name | Date | Signature |
63
+ |------|------|------|----------|
64
+ | | | | |
65
+
66
+ ## Comments
67
+
68
+ <!-- Overall feedback and comments -->