@plainconceptsplatform/loop-task 2.6.0 → 2.6.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/LICENSE +1 -1
- package/README.md +31 -31
- package/dist/client/project-commands.js +1 -1
- package/dist/core/command/command-runner.js +69 -2
- package/dist/core/context/context-parser.js +86 -1
- package/dist/core/context/opencode-json-parser.js +129 -0
- package/dist/core/context/template.js +20 -2
- package/dist/core/context/types.js +1 -0
- package/dist/core/loop/chain-executor.js +4 -1
- package/dist/core/loop/run-executor.js +5 -1
- package/dist/daemon/http/openapi.js +2 -2
- package/dist/daemon/index.js +9 -0
- package/dist/daemon/managers/project-manager.js +1 -1
- package/dist/daemon/telemetry/agent-integrations/claude-code-integration.js +6 -0
- package/dist/daemon/telemetry/agent-integrations/opencode-integration.js +177 -6
- package/dist/daemon/telemetry/agent-serve-manager.js +78 -0
- package/dist/daemon/telemetry/noop-telemetry-adapter.js +1 -0
- package/dist/daemon/telemetry/open-telemetry-adapter.js +101 -22
- package/dist/entry.js +0 -0
- package/dist/shared/i18n/en.json +1 -1
- package/package.json +118 -118
package/package.json
CHANGED
|
@@ -1,119 +1,119 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@plainconceptsplatform/loop-task",
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"description": "Loop engineering toolkit. Run any command on a cadence, in the background, managed from a terminal board. Schedule tests, builds, syncs, or agent prompts.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"loop-task": "dist/entry.js"
|
|
8
|
-
},
|
|
9
|
-
"main": "dist/entry.js",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md",
|
|
13
|
-
"LICENSE"
|
|
14
|
-
],
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@plainconceptsplatform/loop-task",
|
|
3
|
+
"version": "2.6.1",
|
|
4
|
+
"description": "Loop engineering toolkit. Run any command on a cadence, in the background, managed from a terminal board. Schedule tests, builds, syncs, or agent prompts.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"loop-task": "dist/entry.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "dist/entry.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"cli",
|
|
17
|
+
"loop",
|
|
18
|
+
"loop-engineering",
|
|
19
|
+
"repeat",
|
|
20
|
+
"interval",
|
|
21
|
+
"schedule",
|
|
22
|
+
"timer",
|
|
23
|
+
"cron",
|
|
24
|
+
"automation",
|
|
25
|
+
"automations",
|
|
26
|
+
"devops",
|
|
27
|
+
"agent",
|
|
28
|
+
"ai-agent",
|
|
29
|
+
"coding-agent",
|
|
30
|
+
"agent-automation",
|
|
31
|
+
"claude-code",
|
|
32
|
+
"codex",
|
|
33
|
+
"opencode",
|
|
34
|
+
"background-tasks",
|
|
35
|
+
"scheduler"
|
|
36
|
+
],
|
|
37
|
+
"author": "Plain Concepts",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/PlainConceptsPlatform/loop-task.git"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/PlainConceptsPlatform/loop-task",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/PlainConceptsPlatform/loop-task/issues"
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public",
|
|
49
|
+
"registry": "https://registry.npmjs.org/"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=20.0.0"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
56
|
+
"@opentelemetry/api": "^1.9.1",
|
|
57
|
+
"@opentelemetry/api-logs": "^0.221.0",
|
|
58
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "^0.221.0",
|
|
59
|
+
"@opentelemetry/exporter-logs-otlp-http": "^0.221.0",
|
|
60
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.221.0",
|
|
61
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.221.0",
|
|
62
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "^0.221.0",
|
|
63
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.221.0",
|
|
64
|
+
"@opentelemetry/resources": "^2.10.0",
|
|
65
|
+
"@opentelemetry/sdk-logs": "^0.221.0",
|
|
66
|
+
"@opentelemetry/sdk-metrics": "^2.10.0",
|
|
67
|
+
"@opentelemetry/sdk-node": "^0.221.0",
|
|
68
|
+
"@opentelemetry/sdk-trace-base": "^2.10.0",
|
|
69
|
+
"@opentelemetry/sdk-trace-node": "^2.10.0",
|
|
70
|
+
"@opentelemetry/semantic-conventions": "^1.43.0",
|
|
71
|
+
"commander": "^13.1.0",
|
|
72
|
+
"execa": "^9.6.0",
|
|
73
|
+
"ink": "^7.1.0",
|
|
74
|
+
"ink-combobox": "^0.2.0",
|
|
75
|
+
"ink-scroll-list": "^0.4.1",
|
|
76
|
+
"ink-select-input": "^6.2.0",
|
|
77
|
+
"ink-spinner": "^5.0.0",
|
|
78
|
+
"ink-text-input": "^6.0.0",
|
|
79
|
+
"inversify": "^8.1.1",
|
|
80
|
+
"inversify-hooks": "^4.0.0",
|
|
81
|
+
"js-yaml": "^5.2.2",
|
|
82
|
+
"ms": "^2.1.3",
|
|
83
|
+
"react": "^19.2.7",
|
|
84
|
+
"yaml": "^2.9.0",
|
|
85
|
+
"zod": "^4.4.3"
|
|
86
|
+
},
|
|
87
|
+
"devDependencies": {
|
|
88
|
+
"@types/js-yaml": "^4.0.9",
|
|
89
|
+
"@types/ms": "^2.1.0",
|
|
90
|
+
"@types/node": "^22.15.0",
|
|
91
|
+
"@types/react": "^19.2.17",
|
|
92
|
+
"@vitest/coverage-v8": "^3.1.0",
|
|
93
|
+
"eslint": "^9.25.0",
|
|
94
|
+
"husky": "^9.1.7",
|
|
95
|
+
"ink-testing-library": "^4.0.0",
|
|
96
|
+
"tsx": "^4.19.0",
|
|
97
|
+
"typescript": "^5.8.0",
|
|
98
|
+
"typescript-eslint": "^8.30.0",
|
|
99
|
+
"vitest": "^3.1.0"
|
|
100
|
+
},
|
|
101
|
+
"scripts": {
|
|
102
|
+
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && node -e \"require('fs').copyFileSync('src/entry.js','dist/entry.js'); require('fs').copyFileSync('src/esm-loader.js','dist/esm-loader.js')\"",
|
|
103
|
+
"start": "node dist/entry.js",
|
|
104
|
+
"dev": "tsx src/cli.ts",
|
|
105
|
+
"dev:watch": "tsx --watch src/cli.ts",
|
|
106
|
+
"board": "node dist/entry.js",
|
|
107
|
+
"test": "vitest run --exclude '**/background-cli.test.ts'",
|
|
108
|
+
"test:all": "vitest run",
|
|
109
|
+
"test:watch": "vitest",
|
|
110
|
+
"test:coverage": "vitest run --coverage --exclude '**/background-cli.test.ts'",
|
|
111
|
+
"lint": "eslint src/ tests/",
|
|
112
|
+
"typecheck": "tsc --noEmit",
|
|
113
|
+
"release:dry": "npm publish --dry-run --access public",
|
|
114
|
+
"release": "npm publish --access public",
|
|
115
|
+
"visual-evidence": "tsx src/visual-evidence/cli.ts",
|
|
116
|
+
"visual-evidence:publish": "tsx src/visual-evidence/publish.ts",
|
|
117
|
+
"skills:mark-internal": "node scripts/mark-agent-skills-internal.mjs"
|
|
118
|
+
}
|
|
119
119
|
}
|