@chit-run/cli 0.1.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.
Files changed (3) hide show
  1. package/README.md +51 -0
  2. package/dist/chit.js +7451 -0
  3. package/package.json +50 -0
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@chit-run/cli",
3
+ "version": "0.1.0",
4
+ "description": "A thin runtime for multi-agent workflows. Stop being the glue between your agents.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "homepage": "https://chit.run",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/caiopizzol/chit.git",
11
+ "directory": "apps/cli"
12
+ },
13
+ "keywords": [
14
+ "chit",
15
+ "agents",
16
+ "multi-agent",
17
+ "workflow",
18
+ "cli",
19
+ "mcp",
20
+ "claude",
21
+ "codex"
22
+ ],
23
+ "bin": {
24
+ "chit": "dist/chit.js"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "engines": {
30
+ "bun": ">=1.0.0"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "scripts": {
36
+ "build": "bun run build.ts",
37
+ "prepack": "bun run build",
38
+ "test": "bun test",
39
+ "typecheck": "tsc --noEmit",
40
+ "check": "biome check .",
41
+ "check:fix": "biome check --write .",
42
+ "start": "bun src/cli/run.ts"
43
+ },
44
+ "devDependencies": {
45
+ "@chit-run/core": "0.0.0",
46
+ "@chit-run/studio": "0.0.0",
47
+ "@modelcontextprotocol/sdk": "^1.18.0",
48
+ "zod": "^4.4.3"
49
+ }
50
+ }