@llamaventures/cli 1.17.0 → 1.17.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.
package/AGENT_BRIEFING.md CHANGED
@@ -39,6 +39,7 @@ Any time the user mentions a company name or founder name:
39
39
  1. **Run `llama deal search "<name>"` BEFORE web search.** Always. No exceptions.
40
40
  2. If pipeline has it → pull the data, integrate into your reply silently.
41
41
  3. If pipeline doesn't have it → ask once: "New name. Add to pipeline? (Y/n)". On yes, `llama deal create`.
42
+ - Use `--status Interested` when Llama wants to record/track the company before any outreach, intro, response, deck submission, or meeting.
42
43
  - Use `--status Outreached` when we only contacted/logged the company and have no response or effective relationship yet.
43
44
  - Use `--status Sourced` only once there is a response, intro, meeting, or another real relationship signal.
44
45
  - Also set `--source-direction Inbound` if the deal came into the firm; set `--source-direction Outbound` if Llama found/listed/reached out first.
@@ -205,6 +206,7 @@ llama deal show <dealId>
205
206
  llama deal list [--owner ...] [--status ...]
206
207
 
207
208
  # Pipeline — write
209
+ llama deal create "Company" --description "..." --source-direction Outbound --status Interested
208
210
  llama deal create "Company" --description "..." --source-direction Outbound --status Outreached
209
211
  llama deal create "Company" --description "..." --source-direction Inbound --status Sourced
210
212
  llama deal update <dealId> <field> <value>
@@ -213,7 +215,9 @@ llama deal update <dealId> <field> <value>
213
215
  # foundedYear leadInvestor investors (each write logs a deal_events row)
214
216
 
215
217
  # Our Stage vocabulary starts with:
216
- # Outreached → Sourced → First Meeting → Diligence → Partner Meeting → Term Sheet → Invested
218
+ # Interested → Outreached → Sourced → First Meeting → Diligence → Partner Meeting → Term Sheet → Invested
219
+ # `Interested` is pre-contact intent to track. Do not use `manualTags=Interested`
220
+ # for new writes.
217
221
  # `Outreached` is relationship memory only. Do not inflate it to `Sourced`
218
222
  # unless a real relationship signal exists.
219
223
  # `sourceDirection` is separate: Inbound = came into the firm; Outbound =
package/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ this project adheres to [Semantic Versioning](https://semver.org).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.17.1] - 2026-06-29
10
+
11
+ ### Changed
12
+ - Documented `Interested` as the canonical pre-outreach Our Stage across CLI
13
+ help, MCP tool schemas, README examples, and the bundled agent briefing.
14
+ Agents should use `status=Interested` for "record/track before contact" and
15
+ avoid writing new `manualTags=Interested` records.
16
+
9
17
  ## [1.17.0] - 2026-06-23
10
18
 
11
19
  ### Added
@@ -457,7 +465,8 @@ assistant-drafted (🤖) and enforces the AI trust ceiling.
457
465
 
458
466
  ---
459
467
 
460
- [Unreleased]: https://github.com/Llama-Ventures/llama-cli/compare/v1.17.0...HEAD
468
+ [Unreleased]: https://github.com/Llama-Ventures/llama-cli/compare/v1.17.1...HEAD
469
+ [1.17.1]: https://github.com/Llama-Ventures/llama-cli/compare/v1.17.0...v1.17.1
461
470
  [1.17.0]: https://github.com/Llama-Ventures/llama-cli/compare/v1.16.0...v1.17.0
462
471
  [1.16.0]: https://github.com/Llama-Ventures/llama-cli/compare/v1.15.1...v1.16.0
463
472
  [1.15.1]: https://github.com/Llama-Ventures/llama-cli/compare/v1.15.0...v1.15.1
package/README.md CHANGED
@@ -180,12 +180,14 @@ llama token show
180
180
 
181
181
  # Pipeline — read
182
182
  llama deal search "acme ai"
183
+ llama deal list --owner alex --status Interested
183
184
  llama deal list --owner alex --status Outreached
184
185
  llama deal list --source-direction Outbound --status Outreached
185
186
  llama deal list --owner alex --status Diligence
186
187
  llama deal show <dealId>
187
188
 
188
189
  # Pipeline — write
190
+ llama deal create "Acme AI" --description "..." --source Gavin --source-direction Outbound --status Interested
189
191
  llama deal create "Acme AI" --description "..." --source Gavin --source-direction Outbound --status Outreached
190
192
  llama deal create "Acme AI" --description "..." --source Gavin --source-direction Inbound --status Sourced
191
193
  llama deal update <dealId> status Diligence
@@ -197,6 +199,7 @@ llama deal delete <dealId> # soft (audit-logged)
197
199
  llama deal restore <dealId>
198
200
 
199
201
  # Status semantics
202
+ # Interested = record/track before outreach, intro, response, deck submission, or meeting.
200
203
  # Outreached = contact/logged, but no response or effective relationship yet.
201
204
  # Sourced = response, intro, meeting, or another real relationship signal exists.
202
205
  # sourceDirection is separate:
package/README.zh-CN.md CHANGED
@@ -201,12 +201,14 @@ llama token show
201
201
 
202
202
  # Pipeline——读
203
203
  llama deal search "acme ai"
204
+ llama deal list --owner alex --status Interested
204
205
  llama deal list --owner alex --status Outreached
205
206
  llama deal list --source-direction Outbound --status Outreached
206
207
  llama deal list --owner alex --status Diligence
207
208
  llama deal show <dealId>
208
209
 
209
210
  # Pipeline——写
211
+ llama deal create "Acme AI" --description "..." --source Gavin --source-direction Outbound --status Interested
210
212
  llama deal create "Acme AI" --description "..." --source Gavin --source-direction Outbound --status Outreached
211
213
  llama deal create "Acme AI" --description "..." --source Gavin --source-direction Inbound --status Sourced
212
214
  llama deal update <dealId> status Diligence
@@ -218,6 +220,7 @@ llama deal delete <dealId> # 软删除(审计日志记录)
218
220
  llama deal restore <dealId>
219
221
 
220
222
  # Status 语义
223
+ # Interested = 先记录/关注,还没有 outreach、intro、回复、deck submission 或 meeting。
221
224
  # Outreached = 只是联系/记录了,还没有回复或有效关系。
222
225
  # Sourced = 已有回复、intro、会议,或其它真实关系信号。
223
226
  # sourceDirection 是单独维度:
package/bin/llama-mcp.mjs CHANGED
@@ -369,7 +369,7 @@ server.registerTool(
369
369
  .string()
370
370
  .optional()
371
371
  .describe(
372
- "exact match on 'Our Stage' (Outreached, Sourced, First Meeting, Diligence, Partner Meeting, Term Sheet, Invested, Passed, Stalled, Future, Unknown). Outreached means contact was logged but no effective relationship/response exists yet."
372
+ "exact match on 'Our Stage' (Interested, Outreached, Sourced, First Meeting, Diligence, Partner Meeting, Term Sheet, Invested, Passed, Stalled, Future, Unknown). Interested means we want to record/track before contact; Outreached means contact was logged but no effective relationship/response exists yet."
373
373
  ),
374
374
  theirStage: z.string().optional().describe("exact match on 'Their Stage'"),
375
375
  stage: z
@@ -434,7 +434,7 @@ server.registerTool(
434
434
  .string()
435
435
  .optional()
436
436
  .describe(
437
- "Our Stage workflow position. Use Outreached when we only contacted/logged them and have no response/effective relationship; use Sourced only once there is a response, intro, meeting, or other real relationship signal."
437
+ "Our Stage workflow position. Use Interested when we want to record/track before contact; use Outreached when we contacted/logged them and have no response/effective relationship; use Sourced only once there is a response, intro, meeting, or other real relationship signal."
438
438
  ),
439
439
  source: z.string().optional().describe("free-form sourced-by; recommend nominating a user"),
440
440
  sourceDirection: z
package/bin/llama.mjs CHANGED
@@ -390,7 +390,7 @@ auto-detects \`gcloud auth print-identity-token\` and uses Bearer auth.
390
390
  Manually-set \`llc_\` tokens are used as a fallback.
391
391
 
392
392
  Deals:
393
- llama deal create "Company" --source <name> --source-direction Inbound|Outbound --description "..." --status Outreached|Sourced --website https://...
393
+ llama deal create "Company" --source <name> --source-direction Inbound|Outbound --description "..." --status Interested|Outreached|Sourced --website https://...
394
394
  llama deal show <dealId>
395
395
  llama deal feed <dealId> # every contribution (facts + notes), human-typed or assistant-drafted, newest first
396
396
  llama deal update <dealId> <field> <value>
@@ -399,7 +399,7 @@ Deals:
399
399
  roundSize, valuation, deckLink, folderUrl, sector, subsector,
400
400
  foundedYear, leadInvestor, investors, agentActive.
401
401
  e.g. llama deal update <dealId> website https://acme.ai
402
- llama deal update <dealId> status Outreached
402
+ llama deal update <dealId> status Interested
403
403
  llama deal update <dealId> sector "Developer Tools"
404
404
  llama deal update <dealId> foundedYear 2024
405
405
  llama deal update <dealId> leadInvestor "Acme Capital"
@@ -413,7 +413,7 @@ Deals:
413
413
  JSON when possible ('{"a":1}', 'true', '3'), else stored as a
414
414
  string. Audited to deal_events as field_change "extra.<key>".
415
415
  llama deal extra unset <dealId> <key> # delete the key (admin)
416
- llama deal search <query> [--founder name] [--owner <user-key>] [--status Diligence]
416
+ llama deal search <query> [--founder name] [--owner <user-key>] [--status Interested]
417
417
  [--theirStage Raising] [--stage Seed] [--source-direction Inbound]
418
418
  [--limit 200] [--offset 0]
419
419
  llama deal list [--owner ...] [--status ...] [...same flags as search]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llamaventures/cli",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "description": "CLI + MCP server for the Llama Ventures investment workbench (command.llamaventures.vc).",
5
5
  "type": "module",
6
6
  "scripts": {