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 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
@@ -34,6 +34,9 @@ master_key_env = "HAJIMI_CLAW_MASTER_KEY"
34
34
 
35
35
  [execution]
36
36
  mode = "auto"
37
+ profile = "ops-safe"
38
+ browser_enabled = false
39
+ computer_enabled = false
37
40
 
38
41
  [multi_agent]
39
42
  enabled = true
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hajimi-claw-linux-arm64-gnu",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Prebuilt Linux arm64 glibc binary for hajimi-claw",
5
5
  "os": [
6
6
  "linux"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hajimi-claw-linux-x64-gnu",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Prebuilt Linux x64 glibc binary for hajimi-claw",
5
5
  "os": [
6
6
  "linux"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hajimi-claw-win32-arm64-msvc",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Prebuilt Windows arm64 binary for hajimi-claw",
5
5
  "os": [
6
6
  "win32"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hajimi-claw-win32-x64-msvc",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Prebuilt Windows x64 binary for hajimi-claw",
5
5
  "os": [
6
6
  "win32"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hajimi-claw",
3
- "version": "0.1.2",
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.2",
16
- "hajimi-claw-linux-x64-gnu": "0.1.2",
17
- "hajimi-claw-win32-arm64-msvc": "0.1.2",
18
- "hajimi-claw-win32-x64-msvc": "0.1.2"
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",