@holdpoint/cli 0.1.0-alpha.1 → 0.1.0-alpha.10
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/dist/builder-ui/assets/index-3J1uDBNl.css +1 -0
- package/dist/builder-ui/assets/index-CaEfVl3b.js +457 -0
- package/dist/builder-ui/assets/index-CaEfVl3b.js.map +1 -0
- package/dist/builder-ui/index.html +2 -2
- package/dist/index.js +750 -566
- package/dist/index.js.map +1 -1
- package/dist/templates/MASTER_PROMPT.md +16 -16
- package/dist/templates/_base.yaml +8 -3
- package/dist/templates/fullstack.yaml +1 -1
- package/dist/templates/go.yaml +1 -1
- package/dist/templates/nextjs.yaml +1 -1
- package/dist/templates/python.yaml +1 -1
- package/dist/templates/typescript.yaml +14 -17
- package/package.json +9 -8
- package/dist/builder-ui/assets/index-BxfWKnb5.js +0 -437
- package/dist/builder-ui/assets/index-BxfWKnb5.js.map +0 -1
- package/dist/builder-ui/assets/index-DkLHZ-in.css +0 -1
|
@@ -3,12 +3,17 @@ version: 1
|
|
|
3
3
|
context:
|
|
4
4
|
guides: {}
|
|
5
5
|
|
|
6
|
-
conditions:
|
|
6
|
+
conditions:
|
|
7
|
+
- id: has-lint-script
|
|
8
|
+
operator: file_contains
|
|
9
|
+
path: package.json
|
|
10
|
+
contains: '"lint"'
|
|
7
11
|
|
|
8
12
|
checks:
|
|
9
13
|
- id: lint
|
|
10
14
|
label: "ESLint — no warnings"
|
|
11
15
|
cmd: "pnpm lint --max-warnings 0"
|
|
16
|
+
conditionId: has-lint-script
|
|
12
17
|
|
|
13
18
|
- id: typecheck
|
|
14
19
|
label: "TypeScript type check"
|
|
@@ -18,6 +23,13 @@ checks:
|
|
|
18
23
|
label: "Vitest unit tests"
|
|
19
24
|
cmd: "pnpm test --run"
|
|
20
25
|
|
|
26
|
+
- id: no-todos
|
|
27
|
+
label: "No TODO/FIXME left in changed code"
|
|
28
|
+
prompt: >
|
|
29
|
+
Scan the files you changed for any TODO, FIXME, HACK, or XXX comments.
|
|
30
|
+
Either resolve them before finishing or convert them to tracked issues.
|
|
31
|
+
Don't leave incomplete work silently behind.
|
|
32
|
+
|
|
21
33
|
- id: jsdoc
|
|
22
34
|
label: "JSDoc on changed public functions"
|
|
23
35
|
prompt: >
|
|
@@ -30,25 +42,10 @@ checks:
|
|
|
30
42
|
Confirm that any new non-trivial logic introduced in this change
|
|
31
43
|
has corresponding unit tests in the __tests__ directory.
|
|
32
44
|
|
|
33
|
-
- id: changelog-update
|
|
34
|
-
label: "Add a CHANGELOG.md entry for this session"
|
|
35
|
-
prompt: >
|
|
36
|
-
Before committing, add an entry to CHANGELOG.md describing what was done.
|
|
37
|
-
Use Keep a Changelog format — add under ## [Unreleased] (create the file
|
|
38
|
-
and that section if absent). Group entries as Added, Changed, Fixed, or Removed.
|
|
39
|
-
Be concise but specific. The entry text will serve as the commit message.
|
|
40
|
-
|
|
41
|
-
- id: readme-sync
|
|
42
|
-
label: "Update README.md if user-facing changes were made"
|
|
43
|
-
prompt: >
|
|
44
|
-
If you added, changed, or removed user-facing functionality — CLI commands,
|
|
45
|
-
configuration options, public APIs, or significant new features — update
|
|
46
|
-
README.md to reflect those changes.
|
|
47
|
-
|
|
48
45
|
- id: holdpoint-evolve
|
|
49
46
|
label: "Evolve checks when project structure changes"
|
|
50
47
|
when: structural
|
|
51
|
-
cmd: "npx holdpoint evolve"
|
|
48
|
+
cmd: "npx @holdpoint/cli@alpha evolve"
|
|
52
49
|
|
|
53
50
|
- id: git-commit
|
|
54
51
|
label: "Commit all changes before finishing"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holdpoint/cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"tag": "alpha"
|
|
@@ -49,21 +49,22 @@
|
|
|
49
49
|
"chalk": "^5.3.0",
|
|
50
50
|
"commander": "^12.1.0",
|
|
51
51
|
"ora": "^8.1.1",
|
|
52
|
-
"@holdpoint/engine-
|
|
53
|
-
"@holdpoint/engine-
|
|
54
|
-
"@holdpoint/engine-copilot": "0.1.0-alpha.
|
|
55
|
-
"@holdpoint/
|
|
56
|
-
"@holdpoint/
|
|
52
|
+
"@holdpoint/engine-codex": "0.1.0-alpha.8",
|
|
53
|
+
"@holdpoint/engine-claude": "0.1.0-alpha.8",
|
|
54
|
+
"@holdpoint/engine-copilot": "0.1.0-alpha.9",
|
|
55
|
+
"@holdpoint/types": "0.1.0-alpha.6",
|
|
56
|
+
"@holdpoint/engine-cursor": "0.1.0-alpha.8",
|
|
57
|
+
"@holdpoint/yaml-core": "0.1.0-alpha.7"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@types/node": "^22.10.2",
|
|
60
61
|
"tsup": "^8.3.5",
|
|
61
62
|
"typescript": "^5.7.2",
|
|
62
63
|
"vitest": "^2.1.8",
|
|
63
|
-
"@holdpoint/builder": "0.1.
|
|
64
|
+
"@holdpoint/builder": "0.1.1-alpha.4"
|
|
64
65
|
},
|
|
65
66
|
"scripts": {
|
|
66
|
-
"build": "tsup",
|
|
67
|
+
"build": "tsup && node scripts/copy-builder.mjs",
|
|
67
68
|
"typecheck": "tsc --noEmit",
|
|
68
69
|
"test": "vitest run --passWithNoTests",
|
|
69
70
|
"dev": "tsup --watch",
|