@mthanhlm/autodev 0.4.4 → 0.5.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/.claude-plugin/plugin.json +2 -2
- package/PUBLISH.md +9 -40
- package/README.md +70 -104
- package/autodev/bin/autodev-tools.cjs +521 -990
- package/autodev/templates/brief.md +19 -0
- package/autodev/templates/context.md +16 -0
- package/autodev/templates/plan.md +26 -46
- package/autodev/templates/run.md +20 -0
- package/bin/install.js +219 -422
- package/commands/autodev/index.md +117 -9
- package/commands/autodev/status.md +22 -0
- package/hooks/autodev-auto-format.js +3 -3
- package/hooks/autodev-git-guard.js +5 -7
- package/hooks/autodev-paths.js +3 -3
- package/package.json +4 -5
- package/scripts/run-tests.cjs +10 -0
- package/agents/autodev-codebase-domain.md +0 -25
- package/agents/autodev-codebase-quality.md +0 -25
- package/agents/autodev-codebase-runtime.md +0 -25
- package/agents/autodev-codebase-structure.md +0 -25
- package/agents/autodev-review-integration.md +0 -30
- package/agents/autodev-review-polish.md +0 -30
- package/agents/autodev-review-quality.md +0 -30
- package/agents/autodev-review-security.md +0 -30
- package/agents/autodev-task-worker.md +0 -39
- package/autodev/templates/codebase/domain.md +0 -13
- package/autodev/templates/codebase/quality.md +0 -13
- package/autodev/templates/codebase/runtime.md +0 -13
- package/autodev/templates/codebase/structure.md +0 -13
- package/autodev/templates/codebase/summary.md +0 -13
- package/autodev/templates/config.json +0 -22
- package/autodev/templates/project-state.md +0 -15
- package/autodev/templates/project.md +0 -24
- package/autodev/templates/requirements.md +0 -14
- package/autodev/templates/review.md +0 -27
- package/autodev/templates/roadmap.md +0 -17
- package/autodev/templates/state.md +0 -15
- package/autodev/templates/summary.md +0 -22
- package/autodev/templates/task-summary.md +0 -18
- package/autodev/templates/task.md +0 -23
- package/autodev/templates/track-state.md +0 -16
- package/autodev/templates/track.md +0 -24
- package/autodev/templates/uat.md +0 -18
- package/autodev/workflows/autodev-auto.md +0 -62
- package/autodev/workflows/autodev.md +0 -83
- package/autodev/workflows/cleanup.md +0 -51
- package/autodev/workflows/execute-phase.md +0 -144
- package/autodev/workflows/explore-codebase.md +0 -70
- package/autodev/workflows/help.md +0 -113
- package/autodev/workflows/new-project.md +0 -108
- package/autodev/workflows/plan-phase.md +0 -134
- package/autodev/workflows/progress.md +0 -18
- package/autodev/workflows/review-phase.md +0 -80
- package/autodev/workflows/review-plan.md +0 -55
- package/autodev/workflows/review-task.md +0 -70
- package/autodev/workflows/verify-work.md +0 -71
- package/commands/autodev/auto.md +0 -27
- package/commands/autodev/cleanup.md +0 -23
- package/commands/autodev/execute-phase.md +0 -29
- package/commands/autodev/explore-codebase.md +0 -33
- package/commands/autodev/help.md +0 -18
- package/commands/autodev/new-project.md +0 -30
- package/commands/autodev/plan-phase.md +0 -26
- package/commands/autodev/progress.md +0 -18
- package/commands/autodev/review-phase.md +0 -29
- package/commands/autodev/review-task.md +0 -25
- package/commands/autodev/verify-work.md +0 -24
- package/hooks/autodev-context-monitor.js +0 -59
- package/hooks/autodev-phase-boundary.sh +0 -49
- package/hooks/autodev-prompt-guard.js +0 -78
- package/hooks/autodev-read-guard.js +0 -42
- package/hooks/autodev-session-state.sh +0 -51
- package/hooks/autodev-statusline.js +0 -83
- package/hooks/autodev-workflow-guard.js +0 -43
- package/hooks/hooks.json +0 -89
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Brief
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
[What this repo or product is, in one sentence.]
|
|
5
|
+
|
|
6
|
+
## Current Goal
|
|
7
|
+
[What the user wants to ship or change now.]
|
|
8
|
+
|
|
9
|
+
## Users
|
|
10
|
+
- [Primary user or operator]
|
|
11
|
+
|
|
12
|
+
## Constraints
|
|
13
|
+
- [Technical or business constraint]
|
|
14
|
+
|
|
15
|
+
## Definition Of Done
|
|
16
|
+
- [Observable completion signal]
|
|
17
|
+
|
|
18
|
+
## Out Of Scope
|
|
19
|
+
- [What this run should not expand into]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Context Snapshot
|
|
2
|
+
|
|
3
|
+
## Architecture
|
|
4
|
+
- [High-level shape]
|
|
5
|
+
|
|
6
|
+
## Entry Points
|
|
7
|
+
- [Main app, server, CLI, worker, or test entry points]
|
|
8
|
+
|
|
9
|
+
## Safe Change Points
|
|
10
|
+
- [Files or subsystems that look safe to edit]
|
|
11
|
+
|
|
12
|
+
## Risks
|
|
13
|
+
- [Hotspots, unclear ownership, or fragile seams]
|
|
14
|
+
|
|
15
|
+
## Notes For The Current Goal
|
|
16
|
+
- [Only what matters for the active work]
|
|
@@ -1,46 +1,26 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
[
|
|
7
|
-
|
|
8
|
-
##
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
- [
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
- [Command]
|
|
28
|
-
- [Manual check]
|
|
29
|
-
|
|
30
|
-
## Task List
|
|
31
|
-
| Task | Status | Depends On | Goal |
|
|
32
|
-
| --- | --- | --- | --- |
|
|
33
|
-
| 01 | pending | none | [Concrete task goal] |
|
|
34
|
-
| 02 | pending | 01 | [Concrete task goal] |
|
|
35
|
-
|
|
36
|
-
## Revision Rules
|
|
37
|
-
- Preserve completed task rows and summaries as history.
|
|
38
|
-
- Append remediation tasks after the highest existing task number.
|
|
39
|
-
- Only rewrite pending tasks when needed for clarity.
|
|
40
|
-
|
|
41
|
-
## Notes
|
|
42
|
-
- [Anything the delegated agents must know]
|
|
43
|
-
|
|
44
|
-
## Git Policy
|
|
45
|
-
- Read-only only.
|
|
46
|
-
- Allowed: `git status`, `git diff`, `git log`, `git show`, `git rev-parse`, `git ls-files`, `git branch --show-current`.
|
|
1
|
+
# Active Plan
|
|
2
|
+
|
|
3
|
+
Goal: [What this plan should deliver]
|
|
4
|
+
|
|
5
|
+
Done Definition:
|
|
6
|
+
- [What must be true before the work is complete]
|
|
7
|
+
|
|
8
|
+
## Item 01: [Title]
|
|
9
|
+
Status: pending
|
|
10
|
+
Goal: [What this item accomplishes]
|
|
11
|
+
Files:
|
|
12
|
+
- [path]
|
|
13
|
+
Acceptance:
|
|
14
|
+
- [Observable result]
|
|
15
|
+
Verification:
|
|
16
|
+
- [Command or explicit manual check]
|
|
17
|
+
|
|
18
|
+
## Item 02: [Title]
|
|
19
|
+
Status: pending
|
|
20
|
+
Goal: [What this item accomplishes]
|
|
21
|
+
Files:
|
|
22
|
+
- [path]
|
|
23
|
+
Acceptance:
|
|
24
|
+
- [Observable result]
|
|
25
|
+
Verification:
|
|
26
|
+
- [Command or explicit manual check]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Run Report
|
|
2
|
+
|
|
3
|
+
Kind: [execute|repair|plan|context]
|
|
4
|
+
Started: [ISO timestamp]
|
|
5
|
+
Outcome: pending
|
|
6
|
+
|
|
7
|
+
## Observed
|
|
8
|
+
- [Facts only]
|
|
9
|
+
|
|
10
|
+
## Inferred
|
|
11
|
+
- [Only if needed]
|
|
12
|
+
|
|
13
|
+
## Files Changed
|
|
14
|
+
- [path]
|
|
15
|
+
|
|
16
|
+
## Verification
|
|
17
|
+
- [Command and result]
|
|
18
|
+
|
|
19
|
+
## Unknowns
|
|
20
|
+
- [none]
|