@dev-adoption/cli 0.1.8 → 0.1.9
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/README.md +8 -8
- package/package.json +1 -1
- package/src/index.mjs +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ pnpm add -g @dev-adoption/cli
|
|
|
13
13
|
Use the published npm package directly:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx -y @dev-adoption/cli@0.1.
|
|
16
|
+
npx -y @dev-adoption/cli@0.1.9 --help
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Quick start
|
|
@@ -104,14 +104,14 @@ With `DAI_TOKEN`, the server also exposes private context:
|
|
|
104
104
|
- approval-gated draft tools: `update_build_progress`, `attach_repo`, `record_launch_event`, `submit_stack_feedback`
|
|
105
105
|
|
|
106
106
|
```bash
|
|
107
|
-
npx -y @dev-adoption/cli@0.1.
|
|
107
|
+
npx -y @dev-adoption/cli@0.1.9 mcp serve --api https://tokensand.com
|
|
108
108
|
# Add DAI_TOKEN=dai_xxx for private context tools.
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
Enterprise mode:
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
|
-
DAI_MODE=enterprise DAI_ENTERPRISE_PROFILE=redis npx -y @dev-adoption/cli@0.1.
|
|
114
|
+
DAI_MODE=enterprise DAI_ENTERPRISE_PROFILE=redis npx -y @dev-adoption/cli@0.1.9 mcp serve --api https://tokensand.com --mode enterprise
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
Ask the agent:
|
|
@@ -128,7 +128,7 @@ Ask the enterprise agent:
|
|
|
128
128
|
Use Tokens& enterprise_session_brief to analyze this Redis session: budget $45k, 180 registrations, 102 attended, 54 builders, 31 first successes, 14 retained, 9 proof projects. What are the cost per proof, best ICP, event/session format, and dashboard sync status?
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
-
The enterprise promise is one loop:
|
|
131
|
+
The enterprise promise is one loop: get customers using your product by creating a tracked developer session, inviting the right builders, inviting partner companies, and proving adoption. Use `enterprise_session_brief` for analysis, then use the draft-only tools to prepare the motion where the enterprise operator already works:
|
|
132
132
|
|
|
133
133
|
- `draft_enterprise_session_motion` / `draft_adoption_session`
|
|
134
134
|
- `draft_builder_invite_motion`
|
|
@@ -143,13 +143,13 @@ For `draft_adoption_session`, use `sourceProvider` as `luma`, `partiful`, `event
|
|
|
143
143
|
Claude Code:
|
|
144
144
|
|
|
145
145
|
```bash
|
|
146
|
-
claude mcp add --transport stdio tokensand -- npx -y @dev-adoption/cli@0.1.
|
|
146
|
+
claude mcp add --transport stdio tokensand -- npx -y @dev-adoption/cli@0.1.9 mcp serve --api https://tokensand.com
|
|
147
147
|
```
|
|
148
148
|
|
|
149
149
|
Hosts can use the pinned package specifier:
|
|
150
150
|
|
|
151
151
|
```bash
|
|
152
|
-
npx -y @dev-adoption/cli@0.1.
|
|
152
|
+
npx -y @dev-adoption/cli@0.1.9 mcp serve --api https://tokensand.com
|
|
153
153
|
```
|
|
154
154
|
|
|
155
155
|
Publish command for maintainers:
|
|
@@ -170,8 +170,8 @@ The MCP server can read the latest Build Packet before coding, then draft from l
|
|
|
170
170
|
## One-command publish
|
|
171
171
|
|
|
172
172
|
```bash
|
|
173
|
-
DAI_TOKEN=dai_xxx npx -y @dev-adoption/cli@0.1.
|
|
174
|
-
DAI_TOKEN=dai_xxx npx -y @dev-adoption/cli@0.1.
|
|
173
|
+
DAI_TOKEN=dai_xxx npx -y @dev-adoption/cli@0.1.9 project draft --json
|
|
174
|
+
DAI_TOKEN=dai_xxx npx -y @dev-adoption/cli@0.1.9 project publish --demo https://your-demo.example --yes
|
|
175
175
|
```
|
|
176
176
|
|
|
177
177
|
`draft` is non-mutating. `publish --yes` creates the public project only when approved tools can be inferred or explicit tools are passed through MCP.
|
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -24,9 +24,9 @@ import { readFile } from 'node:fs/promises'
|
|
|
24
24
|
import { homedir } from 'node:os'
|
|
25
25
|
import { basename, join } from 'node:path'
|
|
26
26
|
|
|
27
|
-
const VERSION = '0.1.
|
|
27
|
+
const VERSION = '0.1.9'
|
|
28
28
|
const CLI_PACKAGE_SPEC = `@dev-adoption/cli@${VERSION}`
|
|
29
|
-
const ENTERPRISE_GROWTH_PROMISE = '
|
|
29
|
+
const ENTERPRISE_GROWTH_PROMISE = 'Get customers using your product.'
|
|
30
30
|
const ENTERPRISE_ADOPTION_BOUNDARY =
|
|
31
31
|
'Tokens& creates tracking, partner intake, ICP preview, and proof. It does not create Luma/Zoom/Eventbrite pages or send external invites without approval.'
|
|
32
32
|
const DEFAULT_API = process.env.DAI_API_URL || 'https://tokensand.com'
|