create-agentvoy 0.3.0 → 0.4.0

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 ADDED
@@ -0,0 +1,47 @@
1
+ # create-agentvoy
2
+
3
+ Scaffold a production-ready AI agent project in one command.
4
+
5
+ [![npm version](https://img.shields.io/npm/v/create-agentvoy.svg)](https://www.npmjs.com/package/create-agentvoy)
6
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/agentvoy/agentvoy/blob/main/LICENSE)
7
+
8
+ ## Usage
9
+
10
+ ```bash
11
+ # npm
12
+ npm create agentvoy my-agent
13
+
14
+ # npx
15
+ npx create-agentvoy my-agent
16
+
17
+ # yarn
18
+ yarn create agentvoy my-agent
19
+ ```
20
+
21
+ This is a shorthand that runs the full [AgentVoy CLI](https://www.npmjs.com/package/agentvoy).
22
+
23
+ ## What you get
24
+
25
+ ```
26
+ my-agent/
27
+ agent.py # Agent logic
28
+ tools.py # Custom tools
29
+ run.py # Interactive entry point
30
+ agent.guard.yml # Guardrails & permissions config
31
+ requirements.txt # Python dependencies
32
+ .env.example # API key template
33
+ .gitignore
34
+ ```
35
+
36
+ ## Supported frameworks
37
+
38
+ OpenAI Agents SDK · Google ADK · CrewAI · LangGraph · Anthropic SDK
39
+
40
+ ## Links
41
+
42
+ - [Full documentation](https://github.com/agentvoy/agentvoy)
43
+ - [Website](https://agentvoy.com)
44
+
45
+ ## License
46
+
47
+ Apache 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-agentvoy",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Create a new AgentVoy project — npx create-agentvoy my-agent",
5
5
  "bin": {
6
6
  "create-agentvoy": "dist/index.js"
@@ -25,5 +25,24 @@
25
25
  "@types/node": "^20.0.0",
26
26
  "@types/fs-extra": "^11.0.0"
27
27
  },
28
+ "files": [
29
+ "dist",
30
+ "README.md"
31
+ ],
32
+ "author": "Chinmay Murugkar <cthecm@gmail.com>",
33
+ "bugs": {
34
+ "url": "https://github.com/agentvoy/agentvoy/issues"
35
+ },
36
+ "engines": {
37
+ "node": ">=20"
38
+ },
39
+ "homepage": "https://agentvoy.com",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/agentvoy/agentvoy.git"
43
+ },
44
+ "keywords": [
45
+ "ai", "agents", "llm", "scaffold", "cli", "create", "agentvoy"
46
+ ],
28
47
  "license": "Apache-2.0"
29
48
  }
package/src/index.ts DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- /**
4
- * create-agentvoy
5
- *
6
- * Quick project scaffolding: npx create-agentvoy my-agent
7
- * Delegates to the main agentvoy CLI create command.
8
- */
9
-
10
- import { execSync } from "node:child_process";
11
-
12
- const args = process.argv.slice(2).join(" ");
13
- console.log("\nDelegating to: agentvoy create " + args + "\n");
14
- execSync(`npx agentvoy create ${args}`, { stdio: "inherit" });
package/tsconfig.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "outDir": "dist",
5
- "rootDir": "src"
6
- },
7
- "include": ["src/**/*"]
8
- }