@ecc-hgy/ae 0.5.0 → 0.6.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/LICENSE +21 -21
- package/README.md +168 -155
- package/bin/ae.js +2 -2
- package/package.json +43 -43
- package/skills/brainstorming/SKILL.md +133 -133
- package/skills/diagnose/SKILL.md +146 -146
- package/skills/diagnose/assets/issue-7-sections.md +35 -35
- package/skills/diagnose/scripts/hitl-loop.template.sh +41 -41
- package/skills/grill-me/SKILL.md +10 -10
- package/skills/handoff/SKILL.md +19 -19
- package/skills/improve-codebase-architecture/DEEPENING.md +37 -37
- package/skills/improve-codebase-architecture/HTML-REPORT.md +123 -123
- package/skills/improve-codebase-architecture/INTERFACE-DESIGN.md +44 -44
- package/skills/improve-codebase-architecture/LANGUAGE.md +53 -53
- package/skills/improve-codebase-architecture/SKILL.md +101 -101
- package/skills/karpathy-guidelines/SKILL.md +63 -63
- package/skills/powerautomate-email-to-sharepoint-excel/powerautomate-email-to-sharepoint-excel-skill.md +496 -496
- package/skills/review/SKILL.md +119 -119
- package/skills/tdd/SKILL.md +157 -157
- package/skills/tdd/deep-modules.md +33 -33
- package/skills/tdd/interface-design.md +31 -31
- package/skills/tdd/mocking.md +59 -59
- package/skills/tdd/refactoring.md +10 -10
- package/skills/tdd/tests.md +61 -61
- package/skills/to-issues/SKILL.md +79 -79
- package/skills/to-issues/todo-template.md +25 -25
- package/skills/to-prd/SKILL.md +108 -108
- package/skills/using-agentic-engineering/SKILL.md +62 -62
- package/skills/verification-before-completion/SKILL.md +153 -153
- package/skills/writing-plans/SKILL.md +115 -115
- package/skills/zoom-out/SKILL.md +7 -7
- package/src/cli.js +61 -61
- package/src/commands/init.js +137 -137
- package/src/commands/setup.js +162 -162
- package/src/platforms.js +132 -132
- package/src/skeleton.js +134 -99
- package/src/utils/copy.js +100 -100
- package/src/utils/paths.js +60 -60
- package/src/utils/report.js +30 -30
- package/templates/entries/AGENTS.md +2 -0
- package/templates/entries/CLAUDE.md +5 -5
- package/templates/entries/README.md +33 -31
- package/templates/entries/handoff.md +1 -1
- package/templates/entries/spec/ADR/AGENTS.md +30 -30
- package/templates/entries/spec/ADR/CLAUDE.md +5 -5
- package/templates/entries/spec/AGENTS.md +34 -34
- package/templates/entries/spec/CLAUDE.md +5 -5
- package/templates/entries/spec/INDEX.md +28 -28
- package/templates/entries/spec/README.md +23 -23
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 huguiyuan
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 huguiyuan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,159 +1,172 @@
|
|
|
1
|
-
# Agentic Engineering
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/@ecc-hgy/ae)
|
|
4
|
-
[](LICENSE)
|
|
5
|
-
|
|
6
|
-
Agentic Engineering is a lightweight personal software lifecycle method: SDD records what to build, TDD drives how to prove it works. It is delivered as a zero-dependency npm CLI plus agent skills for multiple AI coding platforms.
|
|
7
|
-
|
|
8
|
-
## How It Works
|
|
9
|
-
|
|
10
|
-
```text
|
|
11
|
-
(one-time) ─────▶ S0 Bootstrap · ae setup → ae init
|
|
12
|
-
│
|
|
13
|
-
(each request) ──▶ Router · is this request a *need*?
|
|
14
|
-
│
|
|
15
|
-
┌──── no ────┴──── yes ────┐
|
|
16
|
-
▼ ▼
|
|
17
|
-
just do it enter S1 Main Loop
|
|
18
|
-
(Q&A / quick fix / │
|
|
19
|
-
throwaway script) ├─ A. Need: align → PRD → design → todo → TDD → verify
|
|
20
|
-
└─ B. Accept: accept → debug → fix → reverify → sediment
|
|
21
|
-
│
|
|
22
|
-
▼ (rules proven useful)
|
|
23
|
-
S2 Evolution
|
|
24
|
-
|
|
25
|
-
Legend: SDD = align→PRD→design→todo · TDD = TDD→verify, fix→reverify
|
|
26
|
-
State: spec/ = what to build (persistent) · INDEX.md = need@node · handoff.md = session snapshot
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
A router (the `using-agentic-engineering` skill) gates each non-trivial request: a *need* enters the SDD+TDD loop, everything else is just done. Questions, quick fixes, and throwaway scripts never pay the ceremony.
|
|
30
|
-
|
|
31
|
-
## Quick Start
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
cd /your/project
|
|
35
|
-
npx @ecc-hgy/ae setup
|
|
36
|
-
npx @ecc-hgy/ae init "one-line project goal"
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
`ae setup` installs reusable method assets into the AI coding platforms you select. In interactive terminals it prompts for platforms and preselects detected local platform directories. In scripts or CI, pass platforms explicitly:
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
npx @ecc-hgy/ae setup --platform claude,codex
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
`ae init` creates the platform-neutral project skeleton and renders entry files. Project-specific rules live directly in `AGENTS.md`.
|
|
46
|
-
|
|
47
|
-
## CLI
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
ae setup
|
|
51
|
-
ae setup --platform claude,codex,cursor
|
|
52
|
-
ae init "one-line project goal"
|
|
53
|
-
ae --help
|
|
54
|
-
ae --version
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
Both commands are idempotent. They create missing files, skip existing files, and never overwrite existing entry files. There is no `--force` mode.
|
|
58
|
-
|
|
59
|
-
`ae init` requires `ae setup` to have run first. This keeps asset installation explicit before skeleton creation.
|
|
60
|
-
|
|
61
|
-
## Single Source Of Truth
|
|
62
|
-
|
|
63
|
-
- `AGENTS.md` is the canonical project instructions file.
|
|
64
|
-
- `CLAUDE.md` is a short pointer to `AGENTS.md`; do not maintain a separate copy there.
|
|
65
|
-
- `ae init` renders `AGENTS.md`
|
|
66
|
-
|
|
67
|
-
##
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
|
82
|
-
|
|
83
|
-
|
|
|
84
|
-
|
|
|
85
|
-
|
|
|
86
|
-
|
|
|
87
|
-
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
|
94
|
-
|
|
95
|
-
|
|
|
96
|
-
|
|
|
97
|
-
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
|
118
|
-
|
|
119
|
-
| `
|
|
120
|
-
| `
|
|
121
|
-
| `
|
|
122
|
-
| `
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
1
|
+
# Agentic Engineering
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@ecc-hgy/ae)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
|
|
6
|
+
Agentic Engineering is a lightweight personal software lifecycle method: SDD records what to build, TDD drives how to prove it works. It is delivered as a zero-dependency npm CLI plus agent skills for multiple AI coding platforms.
|
|
7
|
+
|
|
8
|
+
## How It Works
|
|
9
|
+
|
|
10
|
+
```text
|
|
11
|
+
(one-time) ─────▶ S0 Bootstrap · ae setup → ae init
|
|
12
|
+
│
|
|
13
|
+
(each request) ──▶ Router · is this request a *need*?
|
|
14
|
+
│
|
|
15
|
+
┌──── no ────┴──── yes ────┐
|
|
16
|
+
▼ ▼
|
|
17
|
+
just do it enter S1 Main Loop
|
|
18
|
+
(Q&A / quick fix / │
|
|
19
|
+
throwaway script) ├─ A. Need: align → PRD → design → todo → TDD → verify
|
|
20
|
+
└─ B. Accept: accept → debug → fix → reverify → sediment
|
|
21
|
+
│
|
|
22
|
+
▼ (rules proven useful)
|
|
23
|
+
S2 Evolution
|
|
24
|
+
|
|
25
|
+
Legend: SDD = align→PRD→design→todo · TDD = TDD→verify, fix→reverify
|
|
26
|
+
State: spec/ = what to build (persistent) · INDEX.md = need@node · handoff.md = session snapshot
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
A router (the `using-agentic-engineering` skill) gates each non-trivial request: a *need* enters the SDD+TDD loop, everything else is just done. Questions, quick fixes, and throwaway scripts never pay the ceremony.
|
|
30
|
+
|
|
31
|
+
## Quick Start
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
cd /your/project
|
|
35
|
+
npx @ecc-hgy/ae setup
|
|
36
|
+
npx @ecc-hgy/ae init "one-line project goal"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
`ae setup` installs reusable method assets into the AI coding platforms you select. In interactive terminals it prompts for platforms and preselects detected local platform directories. In scripts or CI, pass platforms explicitly:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npx @ecc-hgy/ae setup --platform claude,codex
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
`ae init` creates the platform-neutral project skeleton and renders entry files. The default maintained roots are `src/`, `tests/`, `docs/`, and `data/`; build tools create `dist/` when needed. Project-specific rules live directly in `AGENTS.md`.
|
|
46
|
+
|
|
47
|
+
## CLI
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
ae setup
|
|
51
|
+
ae setup --platform claude,codex,cursor
|
|
52
|
+
ae init "one-line project goal"
|
|
53
|
+
ae --help
|
|
54
|
+
ae --version
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Both commands are idempotent. They create missing files, skip existing files, and never overwrite existing entry files. There is no `--force` mode.
|
|
58
|
+
|
|
59
|
+
`ae init` requires `ae setup` to have run first. This keeps asset installation explicit before skeleton creation.
|
|
60
|
+
|
|
61
|
+
## Single Source Of Truth
|
|
62
|
+
|
|
63
|
+
- `AGENTS.md` is the canonical project instructions file.
|
|
64
|
+
- `CLAUDE.md` is a short pointer to `AGENTS.md`; do not maintain a separate copy there.
|
|
65
|
+
- `ae init` renders `AGENTS.md` with the title, goal, and one default rule: organize maintained files by responsibility and disclose detail progressively. Add project-specific rules and sections as needed; no section format is imposed.
|
|
66
|
+
|
|
67
|
+
## Project Structure
|
|
68
|
+
|
|
69
|
+
- `src/` contains product code, entry points, and scripts. Organize it by durable responsibility rather than mirroring `spec/needs/`; one need may touch several modules and one module may serve several needs.
|
|
70
|
+
- `tests/` contains tests and test fixtures, grouped by capability or scenario.
|
|
71
|
+
- `docs/` contains source documents, guides, and maintained project knowledge.
|
|
72
|
+
- `data/` contains project data and run results. Its internal layout grows with the project's actual needs.
|
|
73
|
+
- `dist/` is reserved for generated build artifacts and is created by the build tool, not by `ae init`.
|
|
74
|
+
|
|
75
|
+
If an existing project already uses a common source root (`app/`, `apps/`, `lib/`, or `packages/`) or test root (`test/` or `__tests__/`), `ae init` keeps that layout instead of adding a duplicate `src/` or `tests/` root.
|
|
76
|
+
|
|
77
|
+
## Platform Scope
|
|
78
|
+
|
|
79
|
+
Current target platforms:
|
|
80
|
+
|
|
81
|
+
| Platform | ID | Skills directory |
|
|
82
|
+
|----------|----|------------------|
|
|
83
|
+
| Claude Code | `claude` | `.claude/skills/` |
|
|
84
|
+
| Codex | `codex` | `.codex/skills/` |
|
|
85
|
+
| Windsurf | `windsurf` | `.windsurf/skills/` |
|
|
86
|
+
| GitHub Copilot | `github-copilot` | `.github/skills/` |
|
|
87
|
+
| Kilo Code | `kilocode` | `.kilocode/skills/` |
|
|
88
|
+
| Kimi Code | `kimicode` | `.kimi-code/skills/` |
|
|
89
|
+
| CodeBuddy | `codebuddy` | `.codebuddy/skills/` |
|
|
90
|
+
| Qoder | `qoder` | `.qoder/skills/` |
|
|
91
|
+
| Trae | `trae` | `.trae/skills/` |
|
|
92
|
+
| Cursor | `cursor` | `.cursor/skills/` |
|
|
93
|
+
| OpenCode | `opencode` | `.opencode/skills/` |
|
|
94
|
+
| Antigravity | `antigravity` | `.agents/skills/` |
|
|
95
|
+
| Gemini CLI | `gemini` | `.gemini/skills/` |
|
|
96
|
+
| Qwen Code | `qwen` | `.qwen/skills/` |
|
|
97
|
+
| Kiro | `kiro` | `.kiro/skills/` |
|
|
98
|
+
|
|
99
|
+
The first implementation is project-scoped only. It does not generate platform-specific entry rule files such as `.cursorrules`, `GEMINI.md`, or Copilot instructions.
|
|
100
|
+
|
|
101
|
+
## Method Overview
|
|
102
|
+
|
|
103
|
+
| Scenario | Purpose | Main output |
|
|
104
|
+
|----------|---------|-------------|
|
|
105
|
+
| S0 Bootstrap | Initialize project structure and entry files | `spec/`, `AGENTS.md`, `CLAUDE.md`, `handoff.md` |
|
|
106
|
+
| S1A Need | Turn an idea into spec, design, tasks, code, and verification | `prd.md`, `design.md`, `todo.md`, tested code |
|
|
107
|
+
| S1B Acceptance | Let user acceptance drive debug, fix, re-verification, and sedimentation | `issues/<topic>.md`, PRD/design/ADR updates |
|
|
108
|
+
| S2 Evolution | Promote repeated working habits into reusable method assets | rule or skill proposals |
|
|
109
|
+
|
|
110
|
+
The two hard gates are:
|
|
111
|
+
|
|
112
|
+
- No aligned requirement, no `prd.md`.
|
|
113
|
+
- No aligned expected behavior, no bug fix.
|
|
114
|
+
|
|
115
|
+
## Skills
|
|
116
|
+
|
|
117
|
+
| Skill | Role |
|
|
118
|
+
|-------|------|
|
|
119
|
+
| `using-agentic-engineering` | Router: at the start of a non-trivial change, decides whether it enters the SDD+TDD loop and dispatches to the right node skill. |
|
|
120
|
+
| `brainstorming` | Coarse requirement alignment before writing PRD. |
|
|
121
|
+
| `grill-me` | Fine-grained questioning for interface, field, parameter, or expected-state ambiguity. |
|
|
122
|
+
| `to-prd` | Writes `spec/needs/<need-name>/prd.md`. |
|
|
123
|
+
| `writing-plans` | Writes `spec/needs/<need-name>/design.md`. |
|
|
124
|
+
| `to-issues` | Breaks design into `todo.md` vertical slices. |
|
|
125
|
+
| `tdd` | Drives A5 development and B5 bug fixes by red-green-refactor. |
|
|
126
|
+
| `verification-before-completion` | Requires fresh real-path evidence before completion claims. |
|
|
127
|
+
| `diagnose` | Builds a reproducible feedback loop and identifies root cause. |
|
|
128
|
+
| `review` | Reviews against standards and spec, then routes findings into PRD, design, ADR, or S2 candidates. |
|
|
129
|
+
| `handoff` | Writes the latest session snapshot to `handoff.md`. |
|
|
130
|
+
| `improve-codebase-architecture` | User-triggered architecture deepening review. |
|
|
131
|
+
| `zoom-out` | User-triggered higher-level codebase map. |
|
|
132
|
+
| `karpathy-guidelines` | Always-on coding discipline during A5/B5: think before coding, simplicity first, surgical changes, goal-driven execution. |
|
|
133
|
+
|
|
134
|
+
## Documentation
|
|
135
|
+
|
|
136
|
+
- [Framework](docs/framework.md)
|
|
137
|
+
- [Spec Framework](docs/spec-framework.md)
|
|
138
|
+
- [S0 Bootstrap](docs/scenarios/s0-bootstrap.md)
|
|
139
|
+
- [S1 Main Loop](docs/scenarios/s1-main-loop.md)
|
|
140
|
+
- [Skill Candidate Design Notes](方案/skill-candidates/README.md)
|
|
141
|
+
|
|
142
|
+
## Repository Layout
|
|
143
|
+
|
|
144
|
+
```text
|
|
145
|
+
bin/ npm executable entry
|
|
146
|
+
src/ zero-dependency CLI implementation
|
|
147
|
+
skills/ Selected Agentic Engineering skills
|
|
148
|
+
templates/ Entry file templates
|
|
149
|
+
docs/ Methodology docs (framework, scenarios, spec framework)
|
|
150
|
+
方案/ Design & decision records (issues, roadmap, skill candidates, archive)
|
|
151
|
+
tests/ node:test coverage for CLI behavior
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
## Roadmap
|
|
155
|
+
|
|
146
156
|
Completed:
|
|
147
157
|
|
|
148
158
|
- v0.2: split CLI into `setup` + `init` and remove slash command assets.
|
|
149
159
|
- v0.3: remove rules injection; make `AGENTS.md` the single source of truth and `CLAUDE.md` a pointer.
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
+
- v0.4: add the request router, coding discipline, and progressive spec rules.
|
|
161
|
+
- v0.5: install skills for 15 project-level AI coding platforms.
|
|
162
|
+
- v0.6: use a small-project skeleton with responsibility-based, progressively disclosed structure.
|
|
163
|
+
|
|
164
|
+
Next:
|
|
165
|
+
|
|
166
|
+
1. Design `ae update` for skill/template upgrades.
|
|
167
|
+
2. Implement `ae index-rebuild`.
|
|
168
|
+
3. Add CI and Windows path validation before broader distribution.
|
|
169
|
+
|
|
170
|
+
## Limits
|
|
171
|
+
|
|
172
|
+
`ae index-rebuild` and `ae update` are referenced by the roadmap but not implemented yet. Publishing to npm still requires `npm login`, scope validation, and `npm publish --access public`.
|
package/bin/ae.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import('../src/cli.js').then((m) => m.run(process.argv.slice(2)));
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import('../src/cli.js').then((m) => m.run(process.argv.slice(2)));
|
package/package.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ecc-hgy/ae",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Agentic Engineering is a lightweight personal software lifecycle method: SDD records what to build, TDD drives how to prove it works.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"ae": "bin/ae.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"bin",
|
|
11
|
-
"src",
|
|
12
|
-
"skills",
|
|
13
|
-
"templates",
|
|
14
|
-
"README.md",
|
|
15
|
-
"LICENSE"
|
|
16
|
-
],
|
|
17
|
-
"engines": {
|
|
18
|
-
"node": ">=18"
|
|
19
|
-
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"test": "node --test tests/*.test.js"
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"claude-code",
|
|
25
|
-
"agentic",
|
|
26
|
-
"skills",
|
|
27
|
-
"tdd",
|
|
28
|
-
"sdd"
|
|
29
|
-
],
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/huguiyuan/agentic-engineering.git"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/huguiyuan/agentic-engineering#readme",
|
|
35
|
-
"bugs": {
|
|
36
|
-
"url": "https://github.com/huguiyuan/agentic-engineering/issues"
|
|
37
|
-
},
|
|
38
|
-
"license": "MIT",
|
|
39
|
-
"author": "huguiyuan",
|
|
40
|
-
"publishConfig": {
|
|
41
|
-
"access": "public"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ecc-hgy/ae",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "Agentic Engineering is a lightweight personal software lifecycle method: SDD records what to build, TDD drives how to prove it works.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ae": "bin/ae.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"src",
|
|
12
|
+
"skills",
|
|
13
|
+
"templates",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"test": "node --test tests/*.test.js"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"claude-code",
|
|
25
|
+
"agentic",
|
|
26
|
+
"skills",
|
|
27
|
+
"tdd",
|
|
28
|
+
"sdd"
|
|
29
|
+
],
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/huguiyuan/agentic-engineering.git"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/huguiyuan/agentic-engineering#readme",
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/huguiyuan/agentic-engineering/issues"
|
|
37
|
+
},
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"author": "huguiyuan",
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
}
|
|
43
|
+
}
|