@llamaventures/cli 1.22.0 → 1.22.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/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ this project adheres to [Semantic Versioning](https://semver.org).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.22.1] - 2026-08-04
10
+
11
+ ### Changed
12
+ - Refresh the transitive `ip-address` dependency from 10.2.0 to 10.4.0 and
13
+ retain the same CLI and MCP behavior across the supported Node 18/20/22
14
+ matrix.
15
+
9
16
  ## [1.22.0] - 2026-07-28
10
17
 
11
18
  ### Added
package/bin/llama.mjs CHANGED
@@ -625,7 +625,7 @@ Command groups — run \`llama help <group>\` for that group's commands:
625
625
  deal create · show · feed · update · enrich · search · collaborators · links · delete
626
626
  activity new-deals · updated-deals · events for agent read models
627
627
  brief brief blocks: list · add · edit · history · refresh
628
- facts deal facts + skill corrections (the sourced, trust-rated layer)
628
+ facts deal facts the sourced, trust-rated layer
629
629
  timeline timeline · posts · mentions
630
630
  wiki cross-deal knowledge entries (markdown or HTML)
631
631
  pref standing agent preferences: list · add · retire · approve
@@ -645,10 +645,20 @@ the CLI auto-detects it — no token needed (\`llc_\` tokens are a fallback).`;
645
645
 
646
646
  // Area → which top-level sections of HELP_FULL belong to it.
647
647
  const HELP_AREA_MATCH = {
648
- deal: [/^Deals/, /^Collaborators/, /^Soft-delete/, /^Deal links/, /^Deal soft-delete/],
648
+ deal: [
649
+ /^Deals/,
650
+ /^Collaborators/,
651
+ /^Soft-delete/,
652
+ /^Deal links/,
653
+ /^Deal soft-delete/,
654
+ // `llama deal refresh-brief` / `revert-run` live under this heading. Without
655
+ // it here the section matched no area and was reachable only via `help all`,
656
+ // which read as "the command does not exist".
657
+ /^Brief refresh/,
658
+ ],
649
659
  activity: [/^Agent activity/],
650
- brief: [/^Brief blocks/],
651
- facts: [/^Deal facts/, /^Skill corrections/],
660
+ brief: [/^Brief blocks/, /^Brief refresh/],
661
+ facts: [/^Deal facts/],
652
662
  timeline: [/^Timeline/, /^Mentions/],
653
663
  wiki: [/^Wiki/, /^Where does this HTML/],
654
664
  memo: [/^Memo/],
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "format": "llama.cli-build.v1",
3
3
  "packageName": "@llamaventures/cli",
4
- "packageVersion": "1.22.0",
5
- "sourceSha": "3e3ede496804de031650e23fc29e1a6763c41daf",
4
+ "packageVersion": "1.22.1",
5
+ "sourceSha": "3280cbaa5ef4ea18ac3ecff7785d15112f9e9fdb",
6
6
  "sourceKind": "github",
7
7
  "sourceDirty": false,
8
8
  "coreApiContract": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llamaventures/cli",
3
- "version": "1.22.0",
3
+ "version": "1.22.1",
4
4
  "description": "CLI + MCP server for the Llama Ventures investment workbench (command.llamaventures.vc).",
5
5
  "type": "module",
6
6
  "scripts": {