@holdpoint/cli 0.1.0-alpha.1 → 0.1.0-alpha.11

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.
@@ -69,7 +69,7 @@ checks:
69
69
  - id: holdpoint-evolve
70
70
  label: "Evolve checks when project structure changes"
71
71
  when: structural
72
- cmd: "npx holdpoint evolve"
72
+ cmd: "npx @holdpoint/cli@alpha evolve"
73
73
 
74
74
  - id: git-commit
75
75
  label: "Commit all changes before finishing"
@@ -53,7 +53,7 @@ checks:
53
53
  - id: holdpoint-evolve
54
54
  label: "Evolve checks when project structure changes"
55
55
  when: structural
56
- cmd: "npx holdpoint evolve"
56
+ cmd: "npx @holdpoint/cli@alpha evolve"
57
57
 
58
58
  - id: git-commit
59
59
  label: "Commit all changes before finishing"
@@ -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.1",
3
+ "version": "0.1.0-alpha.11",
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-claude": "0.1.0-alpha.1",
53
- "@holdpoint/engine-cursor": "0.1.0-alpha.1",
54
- "@holdpoint/engine-copilot": "0.1.0-alpha.1",
55
- "@holdpoint/yaml-core": "0.1.0-alpha.1",
56
- "@holdpoint/types": "0.1.0-alpha.1"
52
+ "@holdpoint/engine-claude": "0.1.0-alpha.9",
53
+ "@holdpoint/engine-codex": "0.1.0-alpha.8",
54
+ "@holdpoint/types": "0.1.0-alpha.6",
55
+ "@holdpoint/engine-copilot": "0.1.0-alpha.9",
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.0"
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",