managed-deepagents 0.0.3-dev.22 → 0.0.3-dev.23

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.
Files changed (2) hide show
  1. package/README.md +2 -5
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -50,19 +50,16 @@ Create an `agent.ts` that exports a named `agent` definition:
50
50
 
51
51
  ```ts
52
52
  import { defineDeepAgent } from "managed-deepagents";
53
- import instructions from "./instructions.md" with { type: "text" };
54
53
  import { queryDB } from "./tools/query-db";
55
54
 
55
+ // The system prompt comes from instructions.md next to this file.
56
56
  export const agent = defineDeepAgent({
57
57
  model: "openai:gpt-5.5",
58
- systemPrompt: instructions,
59
58
  tools: [queryDB],
60
59
  });
61
60
  ```
62
61
 
63
- `defineDeepAgent` accepts the `createDeepAgent` configuration surface minus the
64
- managed keys: `backend`, `store`, and `checkpointer`. Those are provided by the
65
- managed runtime when your agent is deployed.
62
+ `defineDeepAgent` accepts the [`createDeepAgent`](https://reference.langchain.com/javascript/deepagents/agent/createDeepAgent) configuration surface minus the managed keys: `backend`, `store`, `checkpointer`, `memory`, `skills`, and `systemPrompt`. Those are provided by the managed runtime when your agent is deployed. Write the system prompt in `instructions.md` next to `agent.ts`; the CLI embeds it at deploy time.
66
63
 
67
64
  ## Project Shape
68
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "managed-deepagents",
3
- "version": "0.0.3-dev.22",
3
+ "version": "0.0.3-dev.23",
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",
@@ -50,12 +50,12 @@
50
50
  "deepagents": "^1.10.4"
51
51
  },
52
52
  "optionalDependencies": {
53
- "@langchain/managed-deepagents-darwin-arm64": "0.0.3-dev.22",
54
- "@langchain/managed-deepagents-darwin-x64": "0.0.3-dev.22",
55
- "@langchain/managed-deepagents-linux-arm64": "0.0.3-dev.22",
56
- "@langchain/managed-deepagents-linux-x64": "0.0.3-dev.22",
57
- "@langchain/managed-deepagents-win32-x64": "0.0.3-dev.22",
58
- "@langchain/managed-deepagents-win32-arm64": "0.0.3-dev.22"
53
+ "@langchain/managed-deepagents-darwin-arm64": "0.0.3-dev.23",
54
+ "@langchain/managed-deepagents-darwin-x64": "0.0.3-dev.23",
55
+ "@langchain/managed-deepagents-linux-arm64": "0.0.3-dev.23",
56
+ "@langchain/managed-deepagents-linux-x64": "0.0.3-dev.23",
57
+ "@langchain/managed-deepagents-win32-x64": "0.0.3-dev.23",
58
+ "@langchain/managed-deepagents-win32-arm64": "0.0.3-dev.23"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/node": "^26.0.1",