@gobing-ai/spur-cli 0.1.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.
Files changed (3) hide show
  1. package/README.md +44 -0
  2. package/dist/index.js +50564 -0
  3. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@gobing-ai/spur-cli",
3
+ "version": "0.1.1",
4
+ "description": "Spur CLI — local-first harness for mainstream coding agents: constraint checking, workflow orchestration, agent health, and history analytics. Bun-native; exposes the `spur` command.",
5
+ "keywords": [
6
+ "spur",
7
+ "cli",
8
+ "coding-agents",
9
+ "bun",
10
+ "rule-engine",
11
+ "workflow"
12
+ ],
13
+ "homepage": "https://github.com/gobing-ai/spur#readme",
14
+ "bugs": "https://github.com/gobing-ai/spur/issues",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/gobing-ai/spur.git",
18
+ "directory": "apps/cli"
19
+ },
20
+ "license": "Apache-2.0",
21
+ "author": "Robin Min <minlongbing@gmail.com>",
22
+ "type": "module",
23
+ "bin": {
24
+ "spur": "./dist/index.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md"
29
+ ],
30
+ "engines": {
31
+ "bun": ">=1.3.0"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "scripts": {
37
+ "dev": "bun run src/index.ts",
38
+ "build": "bun build src/index.ts --compile --outfile ../../dist/cli/spur",
39
+ "build:bundle": "bun build src/index.ts --target=bun --outfile dist/index.js",
40
+ "test": "bun test tests --coverage --coverage-dir=../../.coverage --pass-with-no-tests",
41
+ "typecheck": "tsc --noEmit",
42
+ "prepublishOnly": "bun run build:bundle"
43
+ },
44
+ "devDependencies": {
45
+ "@commander-js/extra-typings": "^14.0.0",
46
+ "@gobing-ai/spur-app": "0.1.0",
47
+ "@gobing-ai/spur-config": "0.1.0",
48
+ "@gobing-ai/spur-domain": "0.1.0",
49
+ "@gobing-ai/spur-plugin-sdk": "0.1.0",
50
+ "@gobing-ai/ts-ai-runner": "^0.3.2",
51
+ "@gobing-ai/ts-dual-workflow-engine": "^0.3.2",
52
+ "@gobing-ai/ts-llm-jsonl-importer": "^0.3.2",
53
+ "@gobing-ai/ts-rule-engine": "^0.3.2",
54
+ "@gobing-ai/ts-runtime": "^0.3.2",
55
+ "@gobing-ai/ts-infra": "^0.3.2",
56
+ "@gobing-ai/ts-utils": "^0.3.2",
57
+ "@types/bun": "1.3.14",
58
+ "@types/figlet": "^1.7.0",
59
+ "commander": "^14.0.3",
60
+ "figlet": "^1.11.0"
61
+ }
62
+ }