@moxxy/cli 0.0.1

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/dist/index.mjs ADDED
@@ -0,0 +1,16 @@
1
+ import {
2
+ ConfigManager,
3
+ createProgram
4
+ } from "./chunk-TYD7NMMI.mjs";
5
+
6
+ // src/index.ts
7
+ async function run() {
8
+ const { createProgram: createProgram2 } = await import("./cli-XZ5RESNB.mjs");
9
+ const program = createProgram2();
10
+ await program.parseAsync(process.argv);
11
+ }
12
+ export {
13
+ ConfigManager,
14
+ createProgram,
15
+ run
16
+ };
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@moxxy/cli",
3
+ "version": "0.0.1",
4
+ "description": "User-facing CLI for Moxxy agent orchestration",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/webeferen/moxxy.git",
9
+ "directory": "packages/cli"
10
+ },
11
+ "homepage": "https://github.com/webeferen/moxxy/tree/main/packages/cli",
12
+ "bugs": "https://github.com/webeferen/moxxy/issues",
13
+ "keywords": [
14
+ "moxxy",
15
+ "cli",
16
+ "agent",
17
+ "orchestration"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "bin"
25
+ ],
26
+ "main": "./dist/index.js",
27
+ "module": "./dist/index.mjs",
28
+ "types": "./dist/index.d.ts",
29
+ "bin": {
30
+ "moxxy": "./bin/moxxy.js"
31
+ },
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.mjs",
36
+ "require": "./dist/index.js"
37
+ }
38
+ },
39
+ "dependencies": {
40
+ "commander": "^13.0.0",
41
+ "chalk": "^4.1.2",
42
+ "ora": "^5.4.1",
43
+ "prompts": "^2.4.2",
44
+ "zod": "^3.23.8",
45
+ "@moxxy/types": "1.0.0",
46
+ "@moxxy/molt": "1.0.0",
47
+ "@moxxy/integration-base": "1.0.0",
48
+ "@moxxy/integration-github": "1.0.0",
49
+ "@moxxy/agents": "1.0.0",
50
+ "@moxxy/claude": "0.1.0"
51
+ },
52
+ "devDependencies": {
53
+ "@biomejs/biome": "^2.3.13",
54
+ "@types/prompts": "^2.4.9",
55
+ "@types/node": "^22.0.0",
56
+ "tsup": "^8.0.1",
57
+ "typescript": "^5.7.0",
58
+ "vitest": "^2.1.0"
59
+ },
60
+ "scripts": {
61
+ "build": "tsup src/index.ts --format cjs,esm --dts",
62
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
63
+ "test": "vitest run",
64
+ "test:watch": "vitest",
65
+ "lint": "biome check .",
66
+ "lint:fix": "biome check --write .",
67
+ "clean": "rm -rf dist *.tsbuildinfo",
68
+ "start": "node bin/moxxy.js"
69
+ }
70
+ }