@moxxy/agent-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,28 @@
1
+ import {
2
+ PluginRegistry,
3
+ createProgram,
4
+ detectWorkspace,
5
+ failure,
6
+ getContext,
7
+ log,
8
+ output,
9
+ success
10
+ } from "./chunk-SEOH5HLK.mjs";
11
+
12
+ // src/index.ts
13
+ async function run() {
14
+ const { createProgram: createProgram2 } = await import("./cli-XX4HNXSW.mjs");
15
+ const program = createProgram2();
16
+ await program.parseAsync(process.argv);
17
+ }
18
+ export {
19
+ PluginRegistry,
20
+ createProgram,
21
+ detectWorkspace,
22
+ failure,
23
+ getContext,
24
+ log,
25
+ output,
26
+ run,
27
+ success
28
+ };
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@moxxy/agent-cli",
3
+ "version": "0.0.1",
4
+ "description": "Agent-facing CLI tool for structured operations",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/webeferen/moxxy.git",
9
+ "directory": "packages/agent-cli"
10
+ },
11
+ "homepage": "https://github.com/webeferen/moxxy/tree/main/packages/agent-cli",
12
+ "bugs": "https://github.com/webeferen/moxxy/issues",
13
+ "keywords": [
14
+ "moxxy",
15
+ "agent",
16
+ "cli",
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-agent": "./bin/moxxy-agent.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
+ "glob": "^11.0.0",
42
+ "zod": "^3.23.8",
43
+ "@moxxy/types": "1.0.0"
44
+ },
45
+ "devDependencies": {
46
+ "@biomejs/biome": "^2.3.13",
47
+ "@types/node": "^22.0.0",
48
+ "tsup": "^8.0.1",
49
+ "typescript": "^5.7.0",
50
+ "vitest": "^2.1.0"
51
+ },
52
+ "scripts": {
53
+ "build": "tsup src/index.ts --format cjs,esm --dts",
54
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
55
+ "test": "vitest run",
56
+ "test:watch": "vitest",
57
+ "lint": "biome check .",
58
+ "lint:fix": "biome check --write .",
59
+ "clean": "rm -rf dist *.tsbuildinfo"
60
+ }
61
+ }