@bastani/atomic 0.8.26-alpha.8 → 0.8.26
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 +48 -0
- package/dist/builtin/intercom/CHANGELOG.md +24 -0
- package/dist/builtin/intercom/package.json +1 -1
- package/dist/builtin/mcp/CHANGELOG.md +28 -0
- package/dist/builtin/mcp/package.json +1 -1
- package/dist/builtin/subagents/CHANGELOG.md +33 -0
- package/dist/builtin/subagents/agents/codebase-analyzer.md +1 -1
- package/dist/builtin/subagents/agents/codebase-locator.md +1 -1
- package/dist/builtin/subagents/agents/codebase-pattern-finder.md +1 -1
- package/dist/builtin/subagents/agents/codebase-research-analyzer.md +1 -1
- package/dist/builtin/subagents/agents/codebase-research-locator.md +1 -1
- package/dist/builtin/subagents/package.json +1 -1
- package/dist/builtin/web-access/CHANGELOG.md +24 -0
- package/dist/builtin/web-access/package.json +1 -1
- package/dist/builtin/workflows/CHANGELOG.md +40 -0
- package/dist/builtin/workflows/package.json +1 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +4 -2
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/compaction/context-compaction.d.ts +125 -11
- package/dist/core/compaction/context-compaction.d.ts.map +1 -1
- package/dist/core/compaction/context-compaction.js +1112 -78
- package/dist/core/compaction/context-compaction.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/compaction.md +120 -37
- package/docs/extensions.md +4 -4
- package/docs/index.md +16 -2
- package/docs/json.md +1 -1
- package/docs/quickstart.md +18 -4
- package/docs/rpc.md +4 -4
- package/docs/sdk.md +18 -2
- package/docs/session-format.md +1 -1
- package/docs/sessions.md +1 -1
- package/docs/settings.md +1 -1
- package/docs/termux.md +1 -1
- package/docs/usage.md +2 -2
- package/package.json +3 -1
package/docs/usage.md
CHANGED
|
@@ -48,7 +48,7 @@ Type `/` in the editor to open command completion. Extensions can register custo
|
|
|
48
48
|
| `/tree` | Jump to any point in the session and continue from there |
|
|
49
49
|
| `/fork` | Create a new session from a previous user message |
|
|
50
50
|
| `/clone` | Duplicate the current active branch into a new session |
|
|
51
|
-
| `/compact` | Run Verbatim Compaction
|
|
51
|
+
| `/compact` | Run Verbatim Compaction with transcript-bound deletion tools |
|
|
52
52
|
| `/copy` | Copy last assistant message to clipboard |
|
|
53
53
|
| `/export [file]` | Export session to HTML |
|
|
54
54
|
| `/share` | Upload as private GitHub gist with shareable HTML link |
|
|
@@ -89,7 +89,7 @@ Useful session commands:
|
|
|
89
89
|
- `/tree` navigates the in-file session tree and can summarize abandoned branches.
|
|
90
90
|
- `/fork` creates a new session from an earlier user message.
|
|
91
91
|
- `/clone` duplicates the current active branch into a new session file.
|
|
92
|
-
- `/compact` uses Verbatim Compaction: a fixed no-argument deletion-only planner applies only validated logical deletions
|
|
92
|
+
- `/compact` uses Verbatim Compaction: a fixed no-argument deletion-only planner searches/reads transcript slices, records exact deletion targets, and applies only locally validated logical deletions. Retained transcript content stays verbatim. Atomic's approach is informed by Morph's Context Compaction article: [Morph's Context Compaction](https://www.morphllm.com/context-compaction).
|
|
93
93
|
|
|
94
94
|
See [Sessions](/sessions) and [Compaction](/compaction) for details.
|
|
95
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/atomic",
|
|
3
|
-
"version": "0.8.26
|
|
3
|
+
"version": "0.8.26",
|
|
4
4
|
"description": "Atomic coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"atomicConfig": {
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
75
75
|
"@mozilla/readability": "^0.6.0",
|
|
76
76
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
77
|
+
"better-sqlite3": "12.10.0",
|
|
77
78
|
"chalk": "^5.5.0",
|
|
78
79
|
"cross-spawn": "7.0.6",
|
|
79
80
|
"diff": "^8.0.2",
|
|
@@ -104,6 +105,7 @@
|
|
|
104
105
|
"@mariozechner/clipboard": "^0.3.6"
|
|
105
106
|
},
|
|
106
107
|
"devDependencies": {
|
|
108
|
+
"@types/better-sqlite3": "7.6.13",
|
|
107
109
|
"@types/cross-spawn": "6.0.6",
|
|
108
110
|
"@types/diff": "^7.0.2",
|
|
109
111
|
"@types/hosted-git-info": "^3.0.5",
|