@holdpoint/cli 0.1.0-alpha.15 → 0.1.0-alpha.16
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-CaEfVl3b.js → index-DezgTDRo.js} +4 -4
- package/dist/builder-ui/assets/{index-CaEfVl3b.js.map → index-DezgTDRo.js.map} +1 -1
- package/dist/builder-ui/index.html +1 -1
- package/dist/index.js +831 -99
- package/dist/index.js.map +1 -1
- package/dist/templates/HOLDPOINT_PREREQUISITES.md +9 -0
- package/package.json +11 -8
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Holdpoint prerequisites
|
|
2
|
+
|
|
3
|
+
Holdpoint installed repo-local adapters for one or more AI coding agents. Before relying on them locally, review these setup notes:
|
|
4
|
+
|
|
5
|
+
- **GitHub Copilot CLI** — Holdpoint's `.github/extensions/holdpoint/extension.mjs` uses the Copilot CLI **EXTENSIONS** feature. Today that feature is gated behind experimental mode. In Copilot CLI, run `/experimental on` so **EXTENSIONS** appears in the enabled feature set before using Holdpoint locally.
|
|
6
|
+
- **OpenAI Codex** — project-level hooks require trust approval. Run `codex trust` in the Codex TUI or review the hook with `/hooks`.
|
|
7
|
+
- **General** — Holdpoint expects Node.js 18+ and a git repository so `holdpoint init`, `holdpoint update`, and `holdpoint check` can run normally.
|
|
8
|
+
|
|
9
|
+
Docs: https://holdpoint.dev/docs
|
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.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"tag": "alpha"
|
|
@@ -49,19 +49,22 @@
|
|
|
49
49
|
"chalk": "^5.3.0",
|
|
50
50
|
"commander": "^12.1.0",
|
|
51
51
|
"ora": "^8.1.1",
|
|
52
|
-
"@holdpoint/
|
|
53
|
-
"@holdpoint/
|
|
54
|
-
"@holdpoint/engine-
|
|
55
|
-
"@holdpoint/engine-
|
|
56
|
-
"@holdpoint/
|
|
57
|
-
"@holdpoint/
|
|
52
|
+
"@holdpoint/live-daemon": "0.1.0-alpha.2",
|
|
53
|
+
"@holdpoint/sdk": "0.1.0-alpha.2",
|
|
54
|
+
"@holdpoint/engine-claude": "0.1.0-alpha.11",
|
|
55
|
+
"@holdpoint/engine-codex": "0.1.0-alpha.12",
|
|
56
|
+
"@holdpoint/engine-copilot": "0.1.0-alpha.12",
|
|
57
|
+
"@holdpoint/engine-cursor": "0.1.0-alpha.10",
|
|
58
|
+
"@holdpoint/live-protocol": "0.1.0-alpha.2",
|
|
59
|
+
"@holdpoint/types": "0.1.0-alpha.7",
|
|
60
|
+
"@holdpoint/yaml-core": "0.1.0-alpha.8"
|
|
58
61
|
},
|
|
59
62
|
"devDependencies": {
|
|
60
63
|
"@types/node": "^22.10.2",
|
|
61
64
|
"tsup": "^8.3.5",
|
|
62
65
|
"typescript": "^5.7.2",
|
|
63
66
|
"vitest": "^2.1.8",
|
|
64
|
-
"@holdpoint/builder": "0.1.1-alpha.
|
|
67
|
+
"@holdpoint/builder": "0.1.1-alpha.5"
|
|
65
68
|
},
|
|
66
69
|
"scripts": {
|
|
67
70
|
"build": "tsup && node scripts/copy-builder.mjs",
|