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.
Files changed (2) hide show
  1. package/README.md +17 -6
  2. 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` and follow the guided setup:
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
- After scaffolding, choose a coding agent to continue building or choose
55
- **View raw prompt** to copy the setup instructions. The CLI supports Deep Agents
56
- Code, Claude Code, Codex, Cursor, Droid, Gemini CLI, opencode, and Pi. If Deep
57
- Agents Code is not installed, selecting it offers the official install command;
58
- on native Windows, use WSL. Coding agents open in the new project directory.
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.8",
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.8",
69
- "@langchain/managed-deepagents-darwin-x64": "0.5.4-dev.8",
70
- "@langchain/managed-deepagents-linux-arm64": "0.5.4-dev.8",
71
- "@langchain/managed-deepagents-linux-x64": "0.5.4-dev.8",
72
- "@langchain/managed-deepagents-win32-arm64": "0.5.4-dev.8",
73
- "@langchain/managed-deepagents-win32-x64": "0.5.4-dev.8"
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",