@dyzsasd/dev-loop 0.22.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/package.json ADDED
@@ -0,0 +1,91 @@
1
+ {
2
+ "name": "@dyzsasd/dev-loop",
3
+ "version": "0.22.0",
4
+ "type": "module",
5
+ "description": "Standalone local coordination hub for the dev-loop agents — a zero-build, zero-native-dep MCP system-of-record over node:sqlite with per-agent identity, a localhost web-UI daemon, an opt-in agent op-API + thin stdio shim, and a CLI-portable transport (Claude Code / Codex / opencode). See https://github.com/dyzsasd/dev-loop (docs/HUB-ARCHITECTURE.md, docs/PORTABILITY.md).",
6
+ "keywords": [
7
+ "dev-loop",
8
+ "agents",
9
+ "mcp",
10
+ "sqlite",
11
+ "daemon",
12
+ "sdlc",
13
+ "automation",
14
+ "coordination",
15
+ "tickets",
16
+ "claude-code",
17
+ "codex"
18
+ ],
19
+ "homepage": "https://github.com/dyzsasd/dev-loop#readme",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/dyzsasd/dev-loop.git",
23
+ "directory": "hub"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/dyzsasd/dev-loop/issues"
27
+ },
28
+ "license": "MIT",
29
+ "author": {
30
+ "name": "Shuai"
31
+ },
32
+ "bin": {
33
+ "dev-loop": "dist/cli.js",
34
+ "dev-loop-hub": "dist/server.js"
35
+ },
36
+ "files": [
37
+ "dist/",
38
+ "README.md"
39
+ ],
40
+ "scripts": {
41
+ "build": "rm -rf dist && tsc -p tsconfig.build.json",
42
+ "prepack": "npm run build",
43
+ "start": "DEVLOOP_CREATE_PROJECT=1 node src/server.ts",
44
+ "daemon": "node src/daemon.ts",
45
+ "seed": "node src/seed.ts",
46
+ "init-service": "node src/init-service.ts",
47
+ "init-service-test": "node test/init-service.ts",
48
+ "seed-test": "node test/seed.ts",
49
+ "mcp-merge": "node src/mcp-merge.ts",
50
+ "mcp-merge-test": "node test/mcp-merge.ts",
51
+ "release-version": "node src/release-version.ts",
52
+ "doctor": "node src/server.ts doctor",
53
+ "identity-check": "node src/server.ts identity-check",
54
+ "smoke": "node test/smoke.ts",
55
+ "loop": "node test/loop.ts",
56
+ "isolation": "node test/isolation.ts",
57
+ "docs": "node test/docs.ts",
58
+ "board": "node test/board.ts",
59
+ "channel": "node test/channel.ts",
60
+ "mirror": "node test/mirror.ts",
61
+ "identity": "node test/identity.ts",
62
+ "daemon-test": "node test/daemon.ts",
63
+ "agent-api": "DEVLOOP_CHANNEL_DRYRUN=1 DEVLOOP_CHANNEL_TOKEN=xoxb-DRYRUNSECRET DEVLOOP_MIRROR_DRYRUN=1 node test/agent-api.ts",
64
+ "shim": "DEVLOOP_CHANNEL_DRYRUN=1 DEVLOOP_CHANNEL_TOKEN=xoxb-DRYRUNSECRET DEVLOOP_MIRROR_DRYRUN=1 node test/shim.ts",
65
+ "lifecycle": "node test/lifecycle.ts",
66
+ "lifecycle-race": "node test/lifecycle-race.ts",
67
+ "test": "node test/smoke.ts && node test/loop.ts && node test/isolation.ts && node test/docs.ts && node test/board.ts && node test/channel.ts && node test/mirror.ts && node test/identity.ts && node test/resolve-project.ts && node test/daemon.ts && DEVLOOP_CHANNEL_DRYRUN=1 DEVLOOP_CHANNEL_TOKEN=xoxb-DRYRUNSECRET DEVLOOP_MIRROR_DRYRUN=1 node test/agent-api.ts && DEVLOOP_CHANNEL_DRYRUN=1 DEVLOOP_CHANNEL_TOKEN=xoxb-DRYRUNSECRET DEVLOOP_MIRROR_DRYRUN=1 node test/shim.ts && node test/lifecycle.ts && node test/lifecycle-race.ts && node test/blocked.ts && node test/no-progress.ts && node test/migrate.ts && node test/release.ts && node test/mcp-config.ts && node test/init-service.ts && node test/mcp-merge.ts && node test/wal-checkpoint.ts && node test/version-sync.ts && node test/build-artifact.ts && node test/accept-rate.ts && node test/cycle-stage.ts && node test/seed.ts && node test/cli-tickets.ts && node test/open-wip.ts",
68
+ "cli-tickets": "node test/cli-tickets.ts",
69
+ "open-wip": "node test/open-wip.ts",
70
+ "wal-checkpoint": "node test/wal-checkpoint.ts",
71
+ "version-sync": "node test/version-sync.ts",
72
+ "build-artifact": "node test/build-artifact.ts",
73
+ "accept-rate": "node test/accept-rate.ts",
74
+ "cycle-stage": "node test/cycle-stage.ts",
75
+ "blocked": "node test/blocked.ts",
76
+ "no-progress": "node test/no-progress.ts",
77
+ "migrate": "node test/migrate.ts",
78
+ "release": "node test/release.ts",
79
+ "mcp-config": "node test/mcp-config.ts"
80
+ },
81
+ "engines": {
82
+ "node": ">=23.6"
83
+ },
84
+ "dependencies": {
85
+ "@modelcontextprotocol/sdk": "^1.29.0",
86
+ "zod": "^4.4.3"
87
+ },
88
+ "devDependencies": {
89
+ "typescript": "^6"
90
+ }
91
+ }