managed-deepagents 0.5.4-dev.8 → 0.5.4-dev.9
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 +17 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -45,17 +45,28 @@ per-platform optional dependencies, so install only downloads the binary for you
|
|
|
45
45
|
OS and CPU architecture. This npm-installed CLI scaffolds and compiles TypeScript
|
|
46
46
|
projects only and vendors the TypeScript runtime bundled with this package.
|
|
47
47
|
|
|
48
|
-
To start a new project, run `mda init
|
|
48
|
+
To start a new project, run `mda init`. In a terminal, the CLI asks you to name
|
|
49
|
+
the agent:
|
|
49
50
|
|
|
50
51
|
```bash
|
|
51
52
|
mda init
|
|
52
53
|
```
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
55
|
+
Run `mda init -i` to initialize your agent interactively and optionally hand it
|
|
56
|
+
off to a coding agent to build:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
mda init -i
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Choose a coding agent to continue in the new project, or select **View raw
|
|
63
|
+
prompt** to copy the setup instructions.
|
|
64
|
+
|
|
65
|
+
For coding agents and other headless use, pass the project name:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
mda init my-agent
|
|
69
|
+
```
|
|
59
70
|
|
|
60
71
|
`mda init` can shape the project up front — `--instructions "..."` (or
|
|
61
72
|
`--instructions-file <path>`) writes the system prompt, `--model <spec>` picks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "managed-deepagents",
|
|
3
|
-
"version": "0.5.4-dev.
|
|
3
|
+
"version": "0.5.4-dev.9",
|
|
4
4
|
"description": "Managed Deep Agents — the `defineDeepAgent` authoring interface plus the CLI that compiles and deploys a code-first Deep Agent repository to a managed LangGraph runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"langchain",
|
|
@@ -65,12 +65,12 @@
|
|
|
65
65
|
"zod": "^4.4.3"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"@langchain/managed-deepagents-darwin-arm64": "0.5.4-dev.
|
|
69
|
-
"@langchain/managed-deepagents-darwin-x64": "0.5.4-dev.
|
|
70
|
-
"@langchain/managed-deepagents-linux-arm64": "0.5.4-dev.
|
|
71
|
-
"@langchain/managed-deepagents-linux-x64": "0.5.4-dev.
|
|
72
|
-
"@langchain/managed-deepagents-win32-arm64": "0.5.4-dev.
|
|
73
|
-
"@langchain/managed-deepagents-win32-x64": "0.5.4-dev.
|
|
68
|
+
"@langchain/managed-deepagents-darwin-arm64": "0.5.4-dev.9",
|
|
69
|
+
"@langchain/managed-deepagents-darwin-x64": "0.5.4-dev.9",
|
|
70
|
+
"@langchain/managed-deepagents-linux-arm64": "0.5.4-dev.9",
|
|
71
|
+
"@langchain/managed-deepagents-linux-x64": "0.5.4-dev.9",
|
|
72
|
+
"@langchain/managed-deepagents-win32-arm64": "0.5.4-dev.9",
|
|
73
|
+
"@langchain/managed-deepagents-win32-x64": "0.5.4-dev.9"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@types/node": "^26.1.1",
|