chainlesschain 0.43.0 → 0.43.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 +9 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -200,7 +200,9 @@ chainlesschain agent --provider openai --api-key sk-...
200
200
 
201
201
  Built-in tools: `read_file`, `write_file`, `edit_file`, `run_shell`, `search_files`, `list_dir`, `run_skill`, `list_skills`, `run_code`
202
202
 
203
- Agent slash commands: `/plan` (plan mode), `/plan interactive <request>` (LLM-driven planning with skill recommendations), `/model`, `/provider`, `/clear`, `/compact`, `/task`, `/session`, `/stats`, `/auto` (autonomous agent), `/cowork` (multi-agent collaboration)
203
+ Agent slash commands: `/plan` (plan mode), `/plan interactive <request>` (LLM-driven planning with skill recommendations), `/model`, `/provider`, `/clear`, `/compact`, `/task`, `/session`, `/stats`, `/auto` (autonomous agent), `/cowork` (multi-agent collaboration), `/sub-agents` (show active/completed sub-agents)
204
+
205
+ **Sub-Agent Isolation v2** (v0.43.0): Complex tasks are automatically decomposed into isolated sub-agents, each with its own namespaced memory, scoped context, and lifecycle tracking. Use `/sub-agents` inside an agent session to inspect active and completed sub-agents, token usage, and average durations.
204
206
 
205
207
  ### `chainlesschain skill <action>`
206
208
 
@@ -845,7 +847,7 @@ chainlesschain serve --allow-remote --token <secret> # Allow remote + auth
845
847
  chainlesschain serve --project /path/to/project # Default project root for sessions
846
848
  ```
847
849
 
848
- **Session Protocol** (v0.41.0): WebSocket clients can create stateful agent/chat sessions via `session-create`, send messages via `session-message`, resume previous sessions via `session-resume`, and manage sessions via `session-list`/`session-close`. Supports `slash-command` for in-session commands and `session-answer` for interactive Q&A (SlotFiller/Planner).
850
+ **Session Protocol** (v0.43.0): WebSocket clients can create stateful agent/chat sessions via `session-create`, send messages via `session-message`, resume previous sessions via `session-resume`, and manage sessions via `session-list`/`session-close`. Supports `slash-command` for in-session commands and `session-answer` for interactive Q&A (SlotFiller/Planner).
849
851
 
850
852
  ---
851
853
 
@@ -922,7 +924,7 @@ Configuration is stored at `~/.chainlesschain/config.json`. The CLI creates and
922
924
  ```bash
923
925
  cd packages/cli
924
926
  npm install
925
- npm test # Run all tests (2503 tests across 113 files)
927
+ npm test # Run all tests (2748 tests across 124 files)
926
928
  npm run test:unit # Unit tests only
927
929
  npm run test:integration # Integration tests
928
930
  npm run test:e2e # End-to-end tests
@@ -932,15 +934,15 @@ npm run test:e2e # End-to-end tests
932
934
 
933
935
  | Category | Files | Tests | Status |
934
936
  | ------------------------ | ------- | -------- | --------------- |
935
- | Unit — lib modules | 56 | 1200+ | All passing |
937
+ | Unit — lib modules | 63 | 1380+ | All passing |
936
938
  | Unit — commands | 15 | 350+ | All passing |
937
939
  | Unit — runtime | 1 | 6 | All passing |
938
- | Integration | 5 | 30+ | All passing |
939
- | E2E | 14 | 150+ | All passing |
940
+ | Integration | 6 | 40+ | All passing |
941
+ | E2E | 15 | 160+ | All passing |
940
942
  | Core packages (external) | — | 118 | All passing |
941
943
  | Unit — WS sessions | 9 | 156 | All passing |
942
944
  | Integration — WS session | 1 | 12 | All passing |
943
- | **CLI Total** | **113** | **2503** | **All passing** |
945
+ | **CLI Total** | **124** | **2748** | **All passing** |
944
946
 
945
947
  ## License
946
948
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chainlesschain",
3
- "version": "0.43.0",
3
+ "version": "0.43.1",
4
4
  "description": "CLI for ChainlessChain - install, configure, and manage your personal AI management system",
5
5
  "type": "module",
6
6
  "bin": {