hajimi-claw 0.1.2 → 0.1.3
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 +13 -0
- package/config.example.toml +3 -0
- package/npm/platforms/linux-arm64-gnu/package.json +1 -1
- package/npm/platforms/linux-x64-gnu/package.json +1 -1
- package/npm/platforms/win32-arm64-msvc/package.json +1 -1
- package/npm/platforms/win32-x64-msvc/package.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -142,6 +142,16 @@ Current Feishu limitations:
|
|
|
142
142
|
## CLI
|
|
143
143
|
|
|
144
144
|
- `hajimi`
|
|
145
|
+
- `hajimi ask <prompt>`
|
|
146
|
+
- `hajimi tasks`
|
|
147
|
+
- `hajimi approvals`
|
|
148
|
+
- `hajimi approve <request-id>`
|
|
149
|
+
- `hajimi shell open [name]`
|
|
150
|
+
- `hajimi shell status <session-id>`
|
|
151
|
+
- `hajimi shell exec <session-id> <command>`
|
|
152
|
+
- `hajimi shell close <session-id>`
|
|
153
|
+
- `hajimi profile show`
|
|
154
|
+
- `hajimi profile use <ops-safe|dev-agent|computer-use>`
|
|
145
155
|
- `hajimi daemon`
|
|
146
156
|
- `hajimi launch`
|
|
147
157
|
- `hajimi stop`
|
|
@@ -158,6 +168,9 @@ Current Feishu limitations:
|
|
|
158
168
|
- `hajimi restart`
|
|
159
169
|
- `hajimi help`
|
|
160
170
|
|
|
171
|
+
`hajimi ask` now records task state and tool invocations in SQLite. If a guarded command blocks on
|
|
172
|
+
approval, `hajimi approve <request-id>` resumes the blocked task instead of asking you to rerun it.
|
|
173
|
+
|
|
161
174
|
## Multi-Agent
|
|
162
175
|
|
|
163
176
|
`hajimi` can split one natural-language request into multiple sub-agents. This is configured in
|
package/config.example.toml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hajimi-claw",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Single-user Telegram-first ops agent in Rust",
|
|
5
5
|
"bin": {
|
|
6
6
|
"hajimi": "bin/hajimi-claw.js",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"node": ">=18"
|
|
13
13
|
},
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"hajimi-claw-linux-arm64-gnu": "0.1.
|
|
16
|
-
"hajimi-claw-linux-x64-gnu": "0.1.
|
|
17
|
-
"hajimi-claw-win32-arm64-msvc": "0.1.
|
|
18
|
-
"hajimi-claw-win32-x64-msvc": "0.1.
|
|
15
|
+
"hajimi-claw-linux-arm64-gnu": "0.1.3",
|
|
16
|
+
"hajimi-claw-linux-x64-gnu": "0.1.3",
|
|
17
|
+
"hajimi-claw-win32-arm64-msvc": "0.1.3",
|
|
18
|
+
"hajimi-claw-win32-x64-msvc": "0.1.3"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
21
|
"bin",
|