llm-party-cli 0.4.0 → 0.5.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/README.md CHANGED
@@ -256,13 +256,14 @@ Override with `LLM_PARTY_CONFIG` env var to point to a different file.
256
256
  | Field | Required | Default | Description |
257
257
  | ------------------ | -------- | ------------------------ | --------------------------------------------------------------------------------------------------- |
258
258
  | `name` | Yes | | Display name shown in responses as `[AGENT NAME]`. Must be unique. |
259
- | `tag` | No | derived from `name` | Routing tag for `@tag` targeting |
259
+ | `tag` | Yes | | Routing tag for `@tag` targeting. Letters, numbers, hyphens, underscores only. No spaces. |
260
260
  | `provider` | Yes | | SDK adapter:`claude`, `codex`, `copilot`, or `glm` |
261
261
  | `model` | Yes | | Model ID passed to the provider. Examples:`opus`, `sonnet`, `gpt-5.2`, `gpt-4.1`, `glm-5` |
262
262
  | `prompts` | No | none | Array of extra prompt file paths, concatenated after `base.md`. Relative to project root |
263
263
  | `executablePath` | No | PATH lookup | Path to the CLI binary. Supports `~/`. Only needed if the CLI is not in your PATH |
264
264
  | `env` | No | inherits `process.env` | Environment variable overrides for this agent |
265
265
  | `timeout` | No | top-level value | Per-agent timeout override in seconds |
266
+ | `preloadSkills` | No | none | Array of skill names to load at boot. Skills are discovered from `~/.llm-party/skills/`, `.llm-party/skills/`, `.claude/skills/`, `.agents/skills/` |
266
267
 
267
268
  ### Prompts
268
269
 
@@ -291,6 +292,7 @@ Template variables available in prompt files:
291
292
  | `{{allAgentTags}}` | All agent tags as `@tag` |
292
293
  | `{{otherAgentList}}` | Other agents with their tags |
293
294
  | `{{validHandoffTargets}}` | Valid `@next:tag` targets |
295
+ | `{{preloadedSkills}}` | Skills assigned to this agent via `preloadSkills` |
294
296
 
295
297
  ### GLM environment setup
296
298
 
@@ -313,6 +315,38 @@ GLM requires environment overrides to route through a proxy. The adapter tries t
313
315
 
314
316
  <br/>
315
317
 
318
+ ## Skills
319
+
320
+ Skills are folders containing a `SKILL.md` file with specialized instructions for specific workflows. Agents discover skills from these locations (in order):
321
+
322
+ 1. `~/.llm-party/skills/` (global, shared across all projects)
323
+ 2. `.llm-party/skills/` (project-local)
324
+ 3. `.claude/skills/` (if present)
325
+ 4. `.agents/skills/` (if present)
326
+
327
+ Assign skills to agents with `preloadSkills` in config:
328
+
329
+ ```json
330
+ {
331
+ "name": "Reviewer",
332
+ "provider": "claude",
333
+ "model": "opus",
334
+ "preloadSkills": ["aala-review"]
335
+ }
336
+ ```
337
+
338
+ At boot, the orchestrator verifies each skill exists and reports status per agent. Skills assigned to an agent are also shown in the team directory visible to all peers.
339
+
340
+ <br/>
341
+
342
+ ## Mind-map
343
+
344
+ Shared memory between all agents, stored as Obsidian-compatible notes in `~/.llm-party/network/mind-map/`. Each entry is a `.md` file with frontmatter and `[[wikilinks]]` connecting related findings. `INDEX.md` is the entry point that agents read on boot.
345
+
346
+ Agents write to the mind-map as they work: constraints, discoveries, session progress, cross-project breadcrumbs, user preferences. Anything a cold-boot agent would need to know that is not in the code. Open the folder in Obsidian to visualize the knowledge graph.
347
+
348
+ <br/>
349
+
316
350
  ## Session and transcript
317
351
 
318
352
  Every run generates a unique session ID and appends messages to a JSONL transcript in `.llm-party/sessions/` (project-level). The session ID and transcript path are printed at startup.
@@ -327,13 +361,21 @@ File changes made by agents are detected via `git status` after each response. N
327
361
  | ---------------- | -------------------------------------------- |
328
362
  | `/agents` | Open agents panel overlay (Ctrl+P also works) |
329
363
  | `/config` | Open config wizard |
364
+ | `/info` | Commands and keyboard shortcuts panel |
330
365
  | `/save <path>` | Export conversation as JSON |
331
366
  | `/session` | Show session ID and transcript path |
332
367
  | `/changes` | Show git-modified files |
333
368
  | `/clear` | Clear chat display (Ctrl+L also works) |
334
369
  | `/exit` | Quit (graceful shutdown, all adapters cleaned up) |
335
370
  | `Ctrl+P` | Toggle agents panel |
336
- | `Ctrl+C` | Exit (or copy selected text if selection active) |
371
+ | `Ctrl+L` | Clear chat |
372
+ | `Ctrl+C` | Copy selection or exit |
373
+ | `Ctrl+A / E` | Jump to start / end of input line |
374
+ | `Ctrl+U` | Clear entire input line |
375
+ | `Ctrl+W` | Delete word backward |
376
+ | `Shift+Enter` | Insert new line in input |
377
+ | `Up / Down` | Input history |
378
+ | `PageUp/Down` | Scroll chat |
337
379
 
338
380
  <br/>
339
381