managed-deepagents 0.5.4-dev.29 → 0.5.4-dev.30
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 +3 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -70,8 +70,9 @@ mda init my-agent
|
|
|
70
70
|
|
|
71
71
|
`mda init` can shape the project up front — `--instructions "..."` (or
|
|
72
72
|
`--instructions-file <path>`) writes the system prompt, `--model <spec>` picks
|
|
73
|
-
the model, `--memory agent` opts into deployment-shared durable memory,
|
|
74
|
-
`--no-sandbox` leaves out the sandbox
|
|
73
|
+
the model, `--memory agent` opts into deployment-shared durable memory,
|
|
74
|
+
`--no-sandbox` leaves out the sandbox, and `-c slack` (also `--channel` /
|
|
75
|
+
`--channels`) writes `channels/slack.ts`. Every new project includes an
|
|
75
76
|
`identity.ts` that explicitly selects `auth.langsmithApiKey()` authentication.
|
|
76
77
|
|
|
77
78
|
`mda init my-agent --gateway` runs the agent on
|
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.30",
|
|
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",
|
|
@@ -66,12 +66,12 @@
|
|
|
66
66
|
"zod": "^4.4.3"
|
|
67
67
|
},
|
|
68
68
|
"optionalDependencies": {
|
|
69
|
-
"@langchain/managed-deepagents-darwin-arm64": "0.5.4-dev.
|
|
70
|
-
"@langchain/managed-deepagents-darwin-x64": "0.5.4-dev.
|
|
71
|
-
"@langchain/managed-deepagents-linux-arm64": "0.5.4-dev.
|
|
72
|
-
"@langchain/managed-deepagents-linux-x64": "0.5.4-dev.
|
|
73
|
-
"@langchain/managed-deepagents-win32-arm64": "0.5.4-dev.
|
|
74
|
-
"@langchain/managed-deepagents-win32-x64": "0.5.4-dev.
|
|
69
|
+
"@langchain/managed-deepagents-darwin-arm64": "0.5.4-dev.30",
|
|
70
|
+
"@langchain/managed-deepagents-darwin-x64": "0.5.4-dev.30",
|
|
71
|
+
"@langchain/managed-deepagents-linux-arm64": "0.5.4-dev.30",
|
|
72
|
+
"@langchain/managed-deepagents-linux-x64": "0.5.4-dev.30",
|
|
73
|
+
"@langchain/managed-deepagents-win32-arm64": "0.5.4-dev.30",
|
|
74
|
+
"@langchain/managed-deepagents-win32-x64": "0.5.4-dev.30"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@types/node": "^26.1.1",
|