usebeeline 0.0.121 → 0.0.122
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 +11 -1
- package/dist/usebeeline.mjs +1083 -655
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,7 +124,8 @@ Runtime state lives in `${XDG_STATE_HOME:-~/.local/state}/beeline/agents/<agent-
|
|
|
124
124
|
|
|
125
125
|
## Tool reference
|
|
126
126
|
|
|
127
|
-
Two MCP surfaces are mounted into every agent session.
|
|
127
|
+
Two Beeline MCP surfaces are mounted into every agent session. Repository-backed Rooms and
|
|
128
|
+
corners also mount the release-owned `codegraph` server after its local index is ready.
|
|
128
129
|
|
|
129
130
|
`beeline-readonly-mcp` — reading, in a Room and in a corner:
|
|
130
131
|
|
|
@@ -136,6 +137,15 @@ Two MCP surfaces are mounted into every agent session.
|
|
|
136
137
|
| `read_agent_file` | Read the agent's approved skills or Workspace memory |
|
|
137
138
|
| `write_memory` | Replace the agent's private Workspace `MEMORY.md` — the only memory write a Room allows |
|
|
138
139
|
|
|
140
|
+
`codegraph` — indexed code relationships in repository-backed Rooms and corners:
|
|
141
|
+
|
|
142
|
+
| Tool | What it does |
|
|
143
|
+
| ------------------- | --------------------------------------------------------------------------------------------- |
|
|
144
|
+
| `codegraph_explore` | Return relevant source, call paths, and blast radius from the repository's generated index |
|
|
145
|
+
|
|
146
|
+
Rooms run CodeGraph without a file watcher and keep source files read-only; only the generated
|
|
147
|
+
`.codegraph` index is writable. Corners keep the watcher so edits are reflected as work proceeds.
|
|
148
|
+
|
|
139
149
|
`beeline-agent` — acting, host-governed:
|
|
140
150
|
|
|
141
151
|
| Tool | Where | What it does |
|