aipanel-cli 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -27,6 +27,15 @@ make build
27
27
 
28
28
  ```bash
29
29
  node dist/bin/aipanel.js providers --json
30
+ npm start -- providers --json
31
+ make smoke
32
+ ```
33
+
34
+ build 前に source から直接試すなら:
35
+
36
+ ```bash
37
+ npm run dev -- providers --json
38
+ make dev
30
39
  ```
31
40
 
32
41
  ## Package Install
@@ -38,6 +47,8 @@ npm install -g aipanel-cli
38
47
  aipanel providers --json
39
48
  ```
40
49
 
50
+ 2026-03-10 JST 時点で、registry 経由の `npm install aipanel-cli` と `aipanel providers --json` まで確認済みです。
51
+
41
52
  公開前のローカル確認は tarball か `Makefile` で行えます。
42
53
 
43
54
  ```bash
@@ -71,6 +82,14 @@ node dist/bin/aipanel.js followup --session <sessionId> "<question>" [--cwd <dir
71
82
  node dist/bin/aipanel.js debug "<question>" [--cwd <dir>] [--file <path>] [--diff <path>] [--log <path>] [--timeout <ms>] [--json]
72
83
  ```
73
84
 
85
+ repo からのショートカット:
86
+
87
+ ```bash
88
+ npm start -- providers --json
89
+ npm run dev -- consult "この設計どう?" --json
90
+ make run ARGS='debug "この不具合の根本原因は?" --json --timeout 60000'
91
+ ```
92
+
74
93
  よく使う例:
75
94
 
76
95
  ```bash
@@ -141,6 +160,10 @@ make test
141
160
  - `npm test`
142
161
  - `npm run build`
143
162
  - `npm run verify:package`
163
+ - `npm run dev -- providers --json`
164
+ - `npm start -- providers --json`
165
+ - `make smoke`
166
+ - `npm install --prefix "$tmpdir" aipanel-cli`
144
167
  - `node dist/bin/aipanel.js providers --json`
145
168
  - 実 Claude Code を使った `consult`
146
169
  - 実 Claude Code を使った `followup`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aipanel-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI broker and orchestrator for consult, followup, and debug workflows with Claude Code.",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -37,6 +37,9 @@
37
37
  "scripts": {
38
38
  "clean": "node scripts/clean-dist.mjs",
39
39
  "build": "node scripts/clean-dist.mjs && tsc -p tsconfig.build.json",
40
+ "dev": "tsx bin/aipanel.ts",
41
+ "start": "node dist/bin/aipanel.js",
42
+ "smoke": "npm run build && node dist/bin/aipanel.js providers --json",
40
43
  "typecheck": "tsc -p tsconfig.json --noEmit",
41
44
  "render:diagrams": "node scripts/architecture/render-diagram-bundle.mjs docs/rearchitecture/content_rearchitecture_2026-03-10/12_current-implementation-diagrams/source/current-implementation-diagrams.spec.json docs/rearchitecture/content_rearchitecture_2026-03-10/12_current-implementation-diagrams",
42
45
  "pack:dry-run": "npm pack --dry-run",