amazingteam 3.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/.ai-team/agents/architect.md +144 -0
- package/.ai-team/agents/ci-analyst.md +188 -0
- package/.ai-team/agents/developer.md +176 -0
- package/.ai-team/agents/planner.md +355 -0
- package/.ai-team/agents/qa.md +189 -0
- package/.ai-team/agents/reviewer.md +211 -0
- package/.ai-team/agents/triage.md +146 -0
- package/.ai-team/commands/ci-analyze.md +116 -0
- package/.ai-team/commands/design.md +100 -0
- package/.ai-team/commands/implement.md +108 -0
- package/.ai-team/commands/release-check.md +142 -0
- package/.ai-team/commands/review.md +142 -0
- package/.ai-team/commands/test.md +115 -0
- package/.ai-team/commands/triage.md +138 -0
- package/.ai-team/memory/architect/architecture_notes.md +67 -0
- package/.ai-team/memory/architect/design_rationale.md +113 -0
- package/.ai-team/memory/architect/module_map.md +84 -0
- package/.ai-team/memory/ci-analyst/failure_patterns.md +102 -0
- package/.ai-team/memory/ci-analyst/runbook_references.md +87 -0
- package/.ai-team/memory/developer/bug_investigation.md +102 -0
- package/.ai-team/memory/developer/build_issues.md +115 -0
- package/.ai-team/memory/developer/implementation_notes.md +83 -0
- package/.ai-team/memory/failures/failure_library.md +103 -0
- package/.ai-team/memory/planner/decomposition_notes.md +82 -0
- package/.ai-team/memory/planner/flow_rules.md +86 -0
- package/.ai-team/memory/planner/github_issue_patterns.md +229 -0
- package/.ai-team/memory/qa/regression_cases.md +101 -0
- package/.ai-team/memory/qa/test_strategy.md +138 -0
- package/.ai-team/memory/qa/validation_notes.md +110 -0
- package/.ai-team/memory/reviewer/quality_rules.md +105 -0
- package/.ai-team/memory/reviewer/recurring_risks.md +109 -0
- package/.ai-team/memory/reviewer/review_notes.md +124 -0
- package/.ai-team/memory/triage/classification_heuristics.md +82 -0
- package/.ai-team/memory/triage/debug_notes.md +87 -0
- package/.ai-team/opencode.template.jsonc +216 -0
- package/.ai-team/skills/bugfix-playbook/skill.md +174 -0
- package/.ai-team/skills/ci-failure-analysis/skill.md +176 -0
- package/.ai-team/skills/issue-triage/skill.md +163 -0
- package/.ai-team/skills/regression-checklist/skill.md +176 -0
- package/.ai-team/skills/release-readiness-check/skill.md +216 -0
- package/.ai-team/skills/repo-architecture-reader/skill.md +139 -0
- package/.ai-team/skills/safe-refactor-checklist/skill.md +215 -0
- package/.ai-team/skills/task-breakdown-and-dispatch/skill.md +151 -0
- package/.ai-team/skills/test-first-feature-dev/skill.md +205 -0
- package/.ai-team/workflows/ci.yml +81 -0
- package/.ai-team/workflows/nightly-ai-maintenance.yml +129 -0
- package/.ai-team/workflows/opencode.yml +33 -0
- package/.ai-team/workflows/pr-check.yml +41 -0
- package/.foundation/foundation.lock +38 -0
- package/.foundation/local-overrides.md +97 -0
- package/.foundation/upgrade-history.md +38 -0
- package/.opencode/agents/architect.md +38 -0
- package/.opencode/agents/ci-analyst.md +38 -0
- package/.opencode/agents/developer.md +43 -0
- package/.opencode/agents/planner.md +47 -0
- package/.opencode/agents/qa.md +34 -0
- package/.opencode/agents/reviewer.md +38 -0
- package/.opencode/agents/triage.md +37 -0
- package/.opencode/commands/auto.md +264 -0
- package/.opencode/commands/breakdown-issue.md +94 -0
- package/.opencode/commands/ci-analyze.md +15 -0
- package/.opencode/commands/close-parent-task.md +122 -0
- package/.opencode/commands/design.md +15 -0
- package/.opencode/commands/dispatch-next.md +102 -0
- package/.opencode/commands/implement.md +16 -0
- package/.opencode/commands/release-check.md +16 -0
- package/.opencode/commands/resume.md +88 -0
- package/.opencode/commands/review.md +15 -0
- package/.opencode/commands/show-blockers.md +97 -0
- package/.opencode/commands/summarize-parent.md +121 -0
- package/.opencode/commands/test.md +15 -0
- package/.opencode/commands/triage.md +109 -0
- package/.opencode/skills/bugfix-playbook/SKILL.md +81 -0
- package/.opencode/skills/ci-failure-analysis/SKILL.md +94 -0
- package/.opencode/skills/issue-triage/SKILL.md +80 -0
- package/.opencode/skills/regression-checklist/SKILL.md +81 -0
- package/.opencode/skills/release-readiness-check/SKILL.md +81 -0
- package/.opencode/skills/repo-architecture-reader/SKILL.md +65 -0
- package/.opencode/skills/safe-refactor-checklist/SKILL.md +76 -0
- package/.opencode/skills/task-breakdown-and-dispatch/SKILL.md +255 -0
- package/.opencode/skills/test-first-feature-dev/SKILL.md +78 -0
- package/AGENTS.md +879 -0
- package/CHANGELOG.md +261 -0
- package/LICENSE +21 -0
- package/README.md +1215 -0
- package/VERSION +1 -0
- package/action/__tests__/downloader.test.js +251 -0
- package/action/__tests__/merger.test.js +156 -0
- package/action/__tests__/path-resolver.test.js +199 -0
- package/action/__tests__/validator.test.js +310 -0
- package/action/action.yml +61 -0
- package/action/index.js +223 -0
- package/action/lib/downloader.js +344 -0
- package/action/lib/merger.js +170 -0
- package/action/lib/path-resolver.js +176 -0
- package/action/lib/setup.js +286 -0
- package/action/lib/validator.js +324 -0
- package/cli/__tests__/cli.test.js +270 -0
- package/cli/amazingteam.cjs +225 -0
- package/cli/commands/check-update.cjs +159 -0
- package/cli/commands/init.cjs +412 -0
- package/cli/commands/local.cjs +264 -0
- package/cli/commands/migrate.cjs +316 -0
- package/cli/commands/status.cjs +241 -0
- package/cli/commands/upgrade.cjs +213 -0
- package/cli/commands/validate.cjs +259 -0
- package/cli/commands/version.cjs +59 -0
- package/cli/sync.cjs +237 -0
- package/dist/index.js +35 -0
- package/docs/architecture/overview.md +138 -0
- package/docs/blocker_resolution_design.md +372 -0
- package/docs/bootstrap-model.md +356 -0
- package/docs/config-reference.md +458 -0
- package/docs/how-to-use.md +178 -0
- package/docs/migration-to-v3.md +355 -0
- package/docs/overlay-guide.md +156 -0
- package/docs/patterns/README.md +67 -0
- package/docs/quick-start-v3.md +330 -0
- package/docs/releases/README.md +64 -0
- package/docs/runbooks/ci/README.md +62 -0
- package/docs/runbooks/ci/build-debug.md +120 -0
- package/docs/runbooks/ci/flaky-tests.md +127 -0
- package/docs/runbooks/getting-started.md +81 -0
- package/docs/upgrade-policy.md +188 -0
- package/docs/versioning.md +199 -0
- package/overlays/README.md +30 -0
- package/overlays/ai-agent-product/.ai-team/skills/llm-integration/skill.md +99 -0
- package/overlays/ai-agent-product/docs/ai-agent-architecture.md +68 -0
- package/overlays/ai-agent-product/overlay.yaml +26 -0
- package/overlays/cpp-qt-desktop/.ai-team/skills/qt-signals-slots/skill.md +60 -0
- package/overlays/cpp-qt-desktop/docs/qt-conventions.md +64 -0
- package/overlays/cpp-qt-desktop/overlay.yaml +22 -0
- package/overlays/python-backend/.ai-team/skills/python-testing/skill.md +90 -0
- package/overlays/python-backend/docs/python-style.md +78 -0
- package/overlays/python-backend/overlay.yaml +22 -0
- package/overlays/web-fullstack/.ai-team/skills/frontend-testing/skill.md +70 -0
- package/overlays/web-fullstack/docs/frontend-conventions.md +68 -0
- package/overlays/web-fullstack/overlay.yaml +26 -0
- package/package.json +84 -0
- package/presets/default.yaml +161 -0
- package/presets/go.yaml +43 -0
- package/presets/python.yaml +43 -0
- package/presets/typescript.yaml +40 -0
- package/schemas/config.schema.json +239 -0
- package/scripts/diff_foundation_vs_project.sh +134 -0
- package/scripts/generate_docs.sh +200 -0
- package/scripts/init_project.sh +455 -0
- package/scripts/plan_upgrade.sh +268 -0
- package/scripts/upgrade_foundation.sh +365 -0
- package/scripts/validate-foundation.cjs +278 -0
- package/scripts/validate_foundation.sh +192 -0
- package/scripts/validate_project_setup.sh +171 -0
- package/tasks/README.md +94 -0
- package/tasks/_template/analysis.md +76 -0
- package/tasks/_template/design.md +121 -0
- package/tasks/_template/implementation.md +121 -0
- package/tasks/_template/release.md +119 -0
- package/tasks/_template/review.md +131 -0
- package/tasks/_template/subtasks/task.yaml +24 -0
- package/tasks/_template/task.yaml +75 -0
- package/tasks/_template/validation.md +128 -0
- package/templates/amazingteam.yml +81 -0
- package/templates/gitignore +14 -0
- package/templates/opencode.jsonc +216 -0
package/tasks/README.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Task Memory Directory
|
|
2
|
+
|
|
3
|
+
This directory contains task-scoped memory for each issue/feature.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
Each task gets its own subdirectory (`issue-{id}/`) containing:
|
|
8
|
+
- Analysis notes
|
|
9
|
+
- Design documents
|
|
10
|
+
- Implementation notes
|
|
11
|
+
- Validation records
|
|
12
|
+
- Review outcomes
|
|
13
|
+
|
|
14
|
+
For decomposed tasks, subtask directories (`issue-{id}-subtask-{n}/`) contain:
|
|
15
|
+
- Focused implementation notes
|
|
16
|
+
- Subtask-specific validation
|
|
17
|
+
- Review records
|
|
18
|
+
|
|
19
|
+
## Structure
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
tasks/
|
|
23
|
+
├── issue-101/
|
|
24
|
+
│ ├── task.yaml # Parent task manifest
|
|
25
|
+
│ ├── analysis.md # Architect's analysis
|
|
26
|
+
│ ├── design.md # Design document
|
|
27
|
+
│ ├── implementation.md # Developer's notes
|
|
28
|
+
│ ├── validation.md # QA's validation record
|
|
29
|
+
│ └── review.md # Reviewer's findings
|
|
30
|
+
│
|
|
31
|
+
├── issue-101-subtask-01/ # Subtask directory
|
|
32
|
+
│ ├── task.yaml # Subtask manifest (with github_issue, parent_task)
|
|
33
|
+
│ ├── implementation.md # Implementation notes
|
|
34
|
+
│ ├── validation.md # Validation record
|
|
35
|
+
│ └── review.md # Review findings
|
|
36
|
+
│
|
|
37
|
+
├── issue-102/
|
|
38
|
+
│ └── ...
|
|
39
|
+
│
|
|
40
|
+
└── README.md # This file
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## GitHub Issue Mapping
|
|
44
|
+
|
|
45
|
+
Task manifests include GitHub issue references:
|
|
46
|
+
|
|
47
|
+
```yaml
|
|
48
|
+
github_issue: 101
|
|
49
|
+
github_url: https://github.com/org/repo/issues/101
|
|
50
|
+
parent_task: null # null for parent tasks
|
|
51
|
+
parent_github_issue: null
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Subtask manifests:
|
|
55
|
+
|
|
56
|
+
```yaml
|
|
57
|
+
github_issue: 201
|
|
58
|
+
github_url: https://github.com/org/repo/issues/201
|
|
59
|
+
parent_task: issue-101
|
|
60
|
+
parent_github_issue: 101
|
|
61
|
+
depends_on: [200] # GitHub issue numbers
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Lifecycle
|
|
65
|
+
|
|
66
|
+
1. **Creation**: Task directory is created when work begins
|
|
67
|
+
2. **Decomposition**: Planner may create subtask directories
|
|
68
|
+
3. **Active**: Files are updated during task execution
|
|
69
|
+
4. **Completed**: Task memory is preserved for traceability
|
|
70
|
+
5. **Archive**: Optionally archived after project milestones
|
|
71
|
+
|
|
72
|
+
## Permissions
|
|
73
|
+
|
|
74
|
+
| Role | Can Read | Can Write |
|
|
75
|
+
|------|----------|-----------|
|
|
76
|
+
| Planner | All tasks | task.yaml, subtask manifests |
|
|
77
|
+
| Architect | All tasks | analysis.md, design.md |
|
|
78
|
+
| Developer | Current task | implementation.md |
|
|
79
|
+
| QA | Current task | validation.md |
|
|
80
|
+
| Reviewer | Current task | review.md |
|
|
81
|
+
|
|
82
|
+
## Naming Convention
|
|
83
|
+
|
|
84
|
+
- Parent task: `issue-{github-issue-number}`
|
|
85
|
+
- Subtask: `issue-{parent-number}-subtask-{sequence}`
|
|
86
|
+
- Files: `[role]-notes.md` or by phase name
|
|
87
|
+
|
|
88
|
+
## Notes
|
|
89
|
+
|
|
90
|
+
- Task memory helps maintain context across sessions
|
|
91
|
+
- Provides traceable history of decisions
|
|
92
|
+
- GitHub issues are the visible work graph
|
|
93
|
+
- Local task memory is the execution memory
|
|
94
|
+
- Both should be kept in sync
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Analysis
|
|
2
|
+
|
|
3
|
+
## Issue: [Issue Title]
|
|
4
|
+
|
|
5
|
+
**Issue ID**: issue-XXX
|
|
6
|
+
**Type**: feature | bug | refactor | docs | tech
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Requirements Analysis
|
|
11
|
+
|
|
12
|
+
### Functional Requirements
|
|
13
|
+
|
|
14
|
+
1. [Requirement 1]
|
|
15
|
+
2. [Requirement 2]
|
|
16
|
+
|
|
17
|
+
### Non-Functional Requirements
|
|
18
|
+
|
|
19
|
+
1. [Performance requirement]
|
|
20
|
+
2. [Security requirement]
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Current State
|
|
25
|
+
|
|
26
|
+
### Affected Modules
|
|
27
|
+
|
|
28
|
+
- `module1` - [Current behavior]
|
|
29
|
+
- `module2` - [Current behavior]
|
|
30
|
+
|
|
31
|
+
### Related Code
|
|
32
|
+
|
|
33
|
+
- `path/to/file.ts` - [Relevance]
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Impact Assessment
|
|
38
|
+
|
|
39
|
+
### Scope
|
|
40
|
+
|
|
41
|
+
- [ ] Single module
|
|
42
|
+
- [ ] Multiple modules
|
|
43
|
+
- [ ] Cross-cutting concern
|
|
44
|
+
|
|
45
|
+
### Risk Level
|
|
46
|
+
|
|
47
|
+
- **Risk**: low | medium | high
|
|
48
|
+
- **Rationale**: [Why this risk level]
|
|
49
|
+
|
|
50
|
+
### Dependencies
|
|
51
|
+
|
|
52
|
+
| Dependency | Type | Status |
|
|
53
|
+
|------------|------|--------|
|
|
54
|
+
| [dep name] | internal/external | ready/blocked |
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Questions
|
|
59
|
+
|
|
60
|
+
- [ ] [Question 1]
|
|
61
|
+
- [ ] [Question 2]
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Recommendations
|
|
66
|
+
|
|
67
|
+
1. [Recommendation 1]
|
|
68
|
+
2. [Recommendation 2]
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Next Steps
|
|
73
|
+
|
|
74
|
+
- [ ] Proceed to design
|
|
75
|
+
- [ ] Clarify requirements
|
|
76
|
+
- [ ] Investigate further
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Design
|
|
2
|
+
|
|
3
|
+
## Issue: [Issue Title]
|
|
4
|
+
|
|
5
|
+
**Issue ID**: issue-XXX
|
|
6
|
+
**Date**: YYYY-MM-DD
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Design Overview
|
|
11
|
+
|
|
12
|
+
[High-level description of the solution]
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Architecture
|
|
17
|
+
|
|
18
|
+
### Component Diagram
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
┌─────────────┐ ┌─────────────┐
|
|
22
|
+
│ Component │────▶│ Component │
|
|
23
|
+
└─────────────┘ └─────────────┘
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Data Flow
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
Input → Process → Output
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Components
|
|
35
|
+
|
|
36
|
+
### [Component Name]
|
|
37
|
+
|
|
38
|
+
**Purpose**: [What it does]
|
|
39
|
+
|
|
40
|
+
**Responsibilities**:
|
|
41
|
+
- [Responsibility 1]
|
|
42
|
+
- [Responsibility 2]
|
|
43
|
+
|
|
44
|
+
**Interface**:
|
|
45
|
+
```typescript
|
|
46
|
+
interface ComponentName {
|
|
47
|
+
method(): ReturnType;
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## API Changes
|
|
54
|
+
|
|
55
|
+
### New Endpoints
|
|
56
|
+
|
|
57
|
+
| Method | Path | Description |
|
|
58
|
+
|--------|------|-------------|
|
|
59
|
+
| GET | /api/resource | [Description] |
|
|
60
|
+
|
|
61
|
+
### Modified Endpoints
|
|
62
|
+
|
|
63
|
+
| Method | Path | Change |
|
|
64
|
+
|--------|------|--------|
|
|
65
|
+
| | | |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Database Changes
|
|
70
|
+
|
|
71
|
+
### New Tables
|
|
72
|
+
|
|
73
|
+
```sql
|
|
74
|
+
CREATE TABLE table_name (
|
|
75
|
+
id SERIAL PRIMARY KEY,
|
|
76
|
+
-- columns
|
|
77
|
+
);
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Modified Tables
|
|
81
|
+
|
|
82
|
+
| Table | Change |
|
|
83
|
+
|-------|--------|
|
|
84
|
+
| | |
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## Security Considerations
|
|
89
|
+
|
|
90
|
+
- [Security consideration 1]
|
|
91
|
+
- [Security consideration 2]
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## Performance Considerations
|
|
96
|
+
|
|
97
|
+
- [Performance consideration 1]
|
|
98
|
+
- [Performance consideration 2]
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Risks and Mitigations
|
|
103
|
+
|
|
104
|
+
| Risk | Mitigation |
|
|
105
|
+
|------|------------|
|
|
106
|
+
| | |
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Implementation Plan
|
|
111
|
+
|
|
112
|
+
1. [Step 1]
|
|
113
|
+
2. [Step 2]
|
|
114
|
+
3. [Step 3]
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Alternatives Considered
|
|
119
|
+
|
|
120
|
+
1. **[Alternative 1]**: [Why not chosen]
|
|
121
|
+
2. **[Alternative 2]**: [Why not chosen]
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Implementation
|
|
2
|
+
|
|
3
|
+
## Issue: [Issue Title]
|
|
4
|
+
|
|
5
|
+
**Issue ID**: issue-XXX
|
|
6
|
+
**Branch**: feat/issue-XXX-description
|
|
7
|
+
**Date Started**: YYYY-MM-DD
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Implementation Summary
|
|
12
|
+
|
|
13
|
+
[Brief description of what was implemented]
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Changes Made
|
|
18
|
+
|
|
19
|
+
### Files Created
|
|
20
|
+
|
|
21
|
+
| File | Purpose |
|
|
22
|
+
|------|---------|
|
|
23
|
+
| `path/to/new/file.ts` | [Purpose] |
|
|
24
|
+
|
|
25
|
+
### Files Modified
|
|
26
|
+
|
|
27
|
+
| File | Change |
|
|
28
|
+
|------|--------|
|
|
29
|
+
| `path/to/file.ts` | [Change description] |
|
|
30
|
+
|
|
31
|
+
### Files Deleted
|
|
32
|
+
|
|
33
|
+
| File | Reason |
|
|
34
|
+
|------|--------|
|
|
35
|
+
| | |
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Key Decisions
|
|
40
|
+
|
|
41
|
+
### [Decision Topic]
|
|
42
|
+
|
|
43
|
+
**Decision**: [What was decided]
|
|
44
|
+
|
|
45
|
+
**Rationale**: [Why]
|
|
46
|
+
|
|
47
|
+
**Alternatives**: [What else was considered]
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Implementation Notes
|
|
52
|
+
|
|
53
|
+
### [Topic]
|
|
54
|
+
|
|
55
|
+
[Notes about implementation details]
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Testing
|
|
60
|
+
|
|
61
|
+
### Tests Added
|
|
62
|
+
|
|
63
|
+
| Test File | Coverage |
|
|
64
|
+
|-----------|----------|
|
|
65
|
+
| `file.test.ts` | [What is tested] |
|
|
66
|
+
|
|
67
|
+
### Manual Testing
|
|
68
|
+
|
|
69
|
+
- [ ] [Test case 1]
|
|
70
|
+
- [ ] [Test case 2]
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Known Issues
|
|
75
|
+
|
|
76
|
+
| Issue | Status | Workaround |
|
|
77
|
+
|-------|--------|------------|
|
|
78
|
+
| | | |
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## TODOs
|
|
83
|
+
|
|
84
|
+
- [ ] [TODO 1]
|
|
85
|
+
- [ ] [TODO 2]
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Dependencies Added
|
|
90
|
+
|
|
91
|
+
| Package | Version | Purpose |
|
|
92
|
+
|---------|---------|---------|
|
|
93
|
+
| | | |
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## Performance Impact
|
|
98
|
+
|
|
99
|
+
- **Memory**: [Impact]
|
|
100
|
+
- **Startup Time**: [Impact]
|
|
101
|
+
- **Runtime**: [Impact]
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Documentation Updated
|
|
106
|
+
|
|
107
|
+
- [ ] README.md
|
|
108
|
+
- [ ] API documentation
|
|
109
|
+
- [ ] Inline comments
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## Checklist
|
|
114
|
+
|
|
115
|
+
- [ ] Code follows style guidelines
|
|
116
|
+
- [ ] Self-review completed
|
|
117
|
+
- [ ] Comments added for complex logic
|
|
118
|
+
- [ ] Documentation updated
|
|
119
|
+
- [ ] No new warnings
|
|
120
|
+
- [ ] Tests added and passing
|
|
121
|
+
- [ ] Local tests passing
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# Release Notes
|
|
2
|
+
|
|
3
|
+
## Issue: [Issue Title]
|
|
4
|
+
|
|
5
|
+
**Issue ID**: issue-XXX
|
|
6
|
+
**Type**: feature | bug | refactor | docs | tech
|
|
7
|
+
**Version**: X.Y.Z
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Summary
|
|
12
|
+
|
|
13
|
+
Brief summary of what was done and why.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Changes
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- New feature or capability
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Changes to existing functionality
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
- Bug fixes
|
|
27
|
+
|
|
28
|
+
### Removed
|
|
29
|
+
- Deprecated features removed
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Breaking Changes
|
|
34
|
+
|
|
35
|
+
List any breaking changes and migration instructions.
|
|
36
|
+
|
|
37
|
+
### [Breaking Change Title]
|
|
38
|
+
|
|
39
|
+
**Before**: [Old behavior]
|
|
40
|
+
|
|
41
|
+
**After**: [New behavior]
|
|
42
|
+
|
|
43
|
+
**Migration**: [How to update]
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Testing
|
|
48
|
+
|
|
49
|
+
### Test Coverage
|
|
50
|
+
|
|
51
|
+
| Type | Coverage | Status |
|
|
52
|
+
|------|----------|--------|
|
|
53
|
+
| Unit | XX% | Pass |
|
|
54
|
+
| Integration | XX% | Pass |
|
|
55
|
+
| E2E | N/A | Pass |
|
|
56
|
+
|
|
57
|
+
### Test Cases Added
|
|
58
|
+
|
|
59
|
+
1. [Test case 1]
|
|
60
|
+
2. [Test case 2]
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## Validation Checklist
|
|
65
|
+
|
|
66
|
+
- [ ] All acceptance criteria met
|
|
67
|
+
- [ ] Tests pass
|
|
68
|
+
- [ ] Documentation updated
|
|
69
|
+
- [ ] No regressions detected
|
|
70
|
+
- [ ] Performance acceptable
|
|
71
|
+
- [ ] Security review (if applicable)
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Deployment Notes
|
|
76
|
+
|
|
77
|
+
### Pre-deployment
|
|
78
|
+
|
|
79
|
+
- [ ] Backup completed
|
|
80
|
+
- [ ] Migration scripts ready
|
|
81
|
+
- [ ] Rollback plan documented
|
|
82
|
+
|
|
83
|
+
### Post-deployment
|
|
84
|
+
|
|
85
|
+
- [ ] Smoke tests passed
|
|
86
|
+
- [ ] Monitoring alerts configured
|
|
87
|
+
- [ ] Documentation published
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Rollback Plan
|
|
92
|
+
|
|
93
|
+
1. [Step 1]
|
|
94
|
+
2. [Step 2]
|
|
95
|
+
3. [Step 3]
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## Related Issues
|
|
100
|
+
|
|
101
|
+
- #XXX - Related issue
|
|
102
|
+
- #YYY - Dependency
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Reviewer Notes
|
|
107
|
+
|
|
108
|
+
Notes for reviewers about specific areas to focus on or concerns.
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Sign-off
|
|
113
|
+
|
|
114
|
+
| Role | Name | Date |
|
|
115
|
+
|------|------|------|
|
|
116
|
+
| Developer | | |
|
|
117
|
+
| QA | | |
|
|
118
|
+
| Reviewer | | |
|
|
119
|
+
| Approver | | |
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# Review
|
|
2
|
+
|
|
3
|
+
## Issue: [Issue Title]
|
|
4
|
+
|
|
5
|
+
**Issue ID**: issue-XXX
|
|
6
|
+
**Reviewer**: Reviewer Agent
|
|
7
|
+
**Date**: YYYY-MM-DD
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Review Summary
|
|
12
|
+
|
|
13
|
+
[Overall assessment]
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Code Review
|
|
18
|
+
|
|
19
|
+
### Files Reviewed
|
|
20
|
+
|
|
21
|
+
| File | Lines | Assessment |
|
|
22
|
+
|------|-------|------------|
|
|
23
|
+
| `path/to/file.ts` | XX | ✅ Approved / ⚠️ Needs changes |
|
|
24
|
+
|
|
25
|
+
### Code Quality
|
|
26
|
+
|
|
27
|
+
| Aspect | Rating | Notes |
|
|
28
|
+
|--------|--------|-------|
|
|
29
|
+
| Readability | ⭐⭐⭐⭐⭐ | |
|
|
30
|
+
| Maintainability | ⭐⭐⭐⭐⭐ | |
|
|
31
|
+
| Performance | ⭐⭐⭐⭐⭐ | |
|
|
32
|
+
| Security | ⭐⭐⭐⭐⭐ | |
|
|
33
|
+
| Testing | ⭐⭐⭐⭐⭐ | |
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Findings
|
|
38
|
+
|
|
39
|
+
### Critical Issues
|
|
40
|
+
|
|
41
|
+
| Issue | File | Line | Resolution Required |
|
|
42
|
+
|-------|------|------|---------------------|
|
|
43
|
+
| | | | |
|
|
44
|
+
|
|
45
|
+
### Major Issues
|
|
46
|
+
|
|
47
|
+
| Issue | File | Line | Resolution Required |
|
|
48
|
+
|-------|------|------|---------------------|
|
|
49
|
+
| | | | |
|
|
50
|
+
|
|
51
|
+
### Minor Issues / Suggestions
|
|
52
|
+
|
|
53
|
+
| Suggestion | File | Line | Optional |
|
|
54
|
+
|------------|------|------|----------|
|
|
55
|
+
| | | | ✅ |
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Design Review
|
|
60
|
+
|
|
61
|
+
- [ ] Follows existing patterns
|
|
62
|
+
- [ ] No unnecessary complexity
|
|
63
|
+
- [ ] Proper separation of concerns
|
|
64
|
+
- [ ] Appropriate abstractions
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Security Review
|
|
69
|
+
|
|
70
|
+
- [ ] No hardcoded credentials
|
|
71
|
+
- [ ] Input validation present
|
|
72
|
+
- [ ] Output encoding correct
|
|
73
|
+
- [ ] Proper error handling
|
|
74
|
+
- [ ] No sensitive data logging
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Performance Review
|
|
79
|
+
|
|
80
|
+
- [ ] No obvious performance issues
|
|
81
|
+
- [ ] Efficient algorithms used
|
|
82
|
+
- [ ] No memory leaks
|
|
83
|
+
- [ ] Appropriate caching
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Testing Review
|
|
88
|
+
|
|
89
|
+
- [ ] Adequate test coverage
|
|
90
|
+
- [ ] Edge cases tested
|
|
91
|
+
- [ ] Error cases tested
|
|
92
|
+
- [ ] Tests are meaningful
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Documentation Review
|
|
97
|
+
|
|
98
|
+
- [ ] README updated if needed
|
|
99
|
+
- [ ] API documented
|
|
100
|
+
- [ ] Complex logic commented
|
|
101
|
+
- [ ] Type definitions complete
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Best Practices
|
|
106
|
+
|
|
107
|
+
- [ ] Follows coding standards
|
|
108
|
+
- [ ] No code duplication
|
|
109
|
+
- [ ] Meaningful names
|
|
110
|
+
- [ ] Functions are focused
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## Recommendations
|
|
115
|
+
|
|
116
|
+
1. [Recommendation 1]
|
|
117
|
+
2. [Recommendation 2]
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## Review Decision
|
|
122
|
+
|
|
123
|
+
- [ ] ✅ **Approved** - Ready to merge
|
|
124
|
+
- [ ] ⚠️ **Changes Requested** - Address issues above
|
|
125
|
+
- [ ] 💬 **Discussion** - Need clarification
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Notes
|
|
130
|
+
|
|
131
|
+
[Additional review notes]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
id: issue-000-subtask-01
|
|
2
|
+
title: "[Subtask] Subtask Title"
|
|
3
|
+
type: implementation
|
|
4
|
+
status: ready
|
|
5
|
+
priority: high
|
|
6
|
+
owner_role: developer
|
|
7
|
+
depends_on: []
|
|
8
|
+
blocked_by: []
|
|
9
|
+
acceptance_criteria:
|
|
10
|
+
- Acceptance criterion 1
|
|
11
|
+
- Acceptance criterion 2
|
|
12
|
+
risk_level: medium
|
|
13
|
+
module_scope:
|
|
14
|
+
- module1
|
|
15
|
+
|
|
16
|
+
github_issue: null
|
|
17
|
+
github_url: null
|
|
18
|
+
parent_task: issue-000
|
|
19
|
+
parent_github_issue: 000
|
|
20
|
+
|
|
21
|
+
notes: |
|
|
22
|
+
Notes about this subtask.
|
|
23
|
+
|
|
24
|
+
linked_pr: null
|