@iinm/plain-agent 1.0.0 → 1.0.2
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,9 +40,9 @@ curl https://raw.githubusercontent.com/iinm/plain-agent/refs/heads/main/.config/
|
|
|
40
40
|
Create the configuration.
|
|
41
41
|
|
|
42
42
|
```js
|
|
43
|
-
// ~/.config/config.local.json
|
|
43
|
+
// ~/.config/plain-agent/config.local.json
|
|
44
44
|
{
|
|
45
|
-
// Default model
|
|
45
|
+
// Default model
|
|
46
46
|
"model": "gpt-5.4+thinking-high",
|
|
47
47
|
|
|
48
48
|
"platforms": [
|
|
@@ -238,7 +238,7 @@ The agent loads configuration files in the following order. Settings in later fi
|
|
|
238
238
|
},
|
|
239
239
|
"sandbox": {
|
|
240
240
|
"command": "plain-sandbox",
|
|
241
|
-
"args": ["--dockerfile", ".agent/sandbox/Dockerfile", "--allow-write", "--skip-build", "--keep-alive", "30"],
|
|
241
|
+
"args": ["--dockerfile", ".plain-agent/sandbox/Dockerfile", "--allow-write", "--skip-build", "--keep-alive", "30"],
|
|
242
242
|
"separator": "--",
|
|
243
243
|
"rules": [
|
|
244
244
|
{
|
|
@@ -300,7 +300,7 @@ The agent loads configuration files in the following order. Settings in later fi
|
|
|
300
300
|
// https://github.com/iinm/plain-agent/tree/main/sandbox
|
|
301
301
|
"sandbox": {
|
|
302
302
|
"command": "plain-sandbox",
|
|
303
|
-
"args": ["--dockerfile", ".agent/sandbox/Dockerfile", "--allow-write", "--skip-build", "--keep-alive", "30"],
|
|
303
|
+
"args": ["--dockerfile", ".plain-agent/sandbox/Dockerfile", "--allow-write", "--skip-build", "--keep-alive", "30"],
|
|
304
304
|
// separator is inserted between sandbox flags and the user command to prevent bypasses
|
|
305
305
|
"separator": "--",
|
|
306
306
|
|