aurict 1.0.7 → 1.0.8
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 +8 -6
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -25,7 +25,9 @@ that you're using Next.js with Tailwind and Drizzle. It already knows.
|
|
|
25
25
|
**It works with real tools, not simulated ones.**
|
|
26
26
|
Every file read, shell command, and code edit happens through a typed, permission-controlled
|
|
27
27
|
tool layer. Commands are classified as safe, warning, or dangerous before execution. Risky
|
|
28
|
-
|
|
28
|
+
execution is guarded by the policy sandbox: permission gates, protected paths, scrubbed env,
|
|
29
|
+
timeouts, output limits, and audit trails. This is not container isolation; Docker is optional
|
|
30
|
+
for heavier isolation. You always know what's happening and why.
|
|
29
31
|
|
|
30
32
|
**It thinks in parallel, not in sequence.**
|
|
31
33
|
Long tasks — refactoring a module, writing a test suite, auditing security — are broken into
|
|
@@ -65,7 +67,7 @@ Aurict from CI, or build your own tooling on top.
|
|
|
65
67
|
|
|
66
68
|
| Tool | Description |
|
|
67
69
|
|---|---|
|
|
68
|
-
| `bash` | Shell execution with
|
|
70
|
+
| `bash` | Shell execution with conservative safe/warning/danger classification |
|
|
69
71
|
| `read` | File reading with line-range support |
|
|
70
72
|
| `write` | Atomic file writes |
|
|
71
73
|
| `edit` | Precise string-replace edits with diff preview |
|
|
@@ -75,7 +77,7 @@ Aurict from CI, or build your own tooling on top.
|
|
|
75
77
|
| `websearch` | Web search integration |
|
|
76
78
|
| `lsp` | TypeScript/Python language server diagnostics before edits |
|
|
77
79
|
| `todo` | Project-local task tracking, persisted to `.aurict/todos.json` |
|
|
78
|
-
| `apply_patch` |
|
|
80
|
+
| `apply_patch` | Multi-file patch application with preview, GateGuard checks, and granular approval |
|
|
79
81
|
| `subagent` | Spawn a typed specialist agent inline |
|
|
80
82
|
|
|
81
83
|
### Security
|
|
@@ -83,7 +85,7 @@ Aurict from CI, or build your own tooling on top.
|
|
|
83
85
|
| Feature | Description |
|
|
84
86
|
|---|---|
|
|
85
87
|
| **Bash classifier** | Three-tier analysis (safe / warning / danger) before any shell command runs |
|
|
86
|
-
| **
|
|
88
|
+
| **Policy sandbox** | Risky executables run through command classification, approvals, protected paths, scrubbed env, timeouts, output limits, and audit logs; Docker is optional for heavier isolation |
|
|
87
89
|
| **Permission system** | Per-tool allow/deny rules, wildcard path matching, always-allow list |
|
|
88
90
|
| **JWT auth** | Bearer token on the local HTTP API, auto-generated at `~/.aurict/server-token` |
|
|
89
91
|
|
|
@@ -301,7 +303,7 @@ curl -X POST http://localhost:7777/v1/session \
|
|
|
301
303
|
-d '{"provider":"anthropic","model":"claude-sonnet-4-6"}'
|
|
302
304
|
|
|
303
305
|
# List sessions
|
|
304
|
-
curl http://localhost:7777/v1/
|
|
306
|
+
curl http://localhost:7777/v1/session \
|
|
305
307
|
-H "Authorization: Bearer $TOKEN"
|
|
306
308
|
|
|
307
309
|
# Send a message (SSE stream)
|
|
@@ -340,7 +342,7 @@ aurict /config set default.model claude-sonnet-4-6
|
|
|
340
342
|
```bash
|
|
341
343
|
bun install # install dependencies
|
|
342
344
|
bun run dev # start in development mode (hot reload)
|
|
343
|
-
bun run test # run
|
|
345
|
+
bun run test # run the test suite
|
|
344
346
|
bun run typecheck # TypeScript strict check (both packages)
|
|
345
347
|
bun run build # compile to standalone binary → dist/aurict
|
|
346
348
|
```
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aurict",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Open-source terminal AI coding assistant
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Open-source terminal AI coding assistant with multi-provider support, specialist agents, skills, and a low-overhead policy sandbox.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"cli",
|
|
8
8
|
"coding-assistant",
|
|
9
9
|
"terminal-ai",
|
|
10
10
|
"claude",
|
|
11
|
-
"claude-code-alternative",
|
|
12
11
|
"opencode-alternative",
|
|
13
12
|
"terminal",
|
|
14
13
|
"llm",
|
|
@@ -25,7 +24,7 @@
|
|
|
25
24
|
"type": "git",
|
|
26
25
|
"url": "git+https://github.com/aurict/aurict.git"
|
|
27
26
|
},
|
|
28
|
-
"homepage": "https://aurict.
|
|
27
|
+
"homepage": "https://aurict.com",
|
|
29
28
|
"bugs": {
|
|
30
29
|
"url": "https://github.com/aurict/aurict/issues"
|
|
31
30
|
},
|
|
@@ -37,11 +36,11 @@
|
|
|
37
36
|
"README.md"
|
|
38
37
|
],
|
|
39
38
|
"optionalDependencies": {
|
|
40
|
-
"@aurict/cli-linux-x64": "1.0.
|
|
41
|
-
"@aurict/cli-linux-arm64": "1.0.
|
|
42
|
-
"@aurict/cli-darwin-x64": "1.0.
|
|
43
|
-
"@aurict/cli-darwin-arm64": "1.0.
|
|
44
|
-
"@aurict/cli-win32-x64": "1.0.
|
|
39
|
+
"@aurict/cli-linux-x64": "1.0.8",
|
|
40
|
+
"@aurict/cli-linux-arm64": "1.0.8",
|
|
41
|
+
"@aurict/cli-darwin-x64": "1.0.8",
|
|
42
|
+
"@aurict/cli-darwin-arm64": "1.0.8",
|
|
43
|
+
"@aurict/cli-win32-x64": "1.0.8"
|
|
45
44
|
},
|
|
46
45
|
"engines": {
|
|
47
46
|
"node": ">=20"
|