@oisincoveney/pipeline 1.2.2 → 1.3.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/README.md +6 -0
- package/dist/index.js +34 -0
- package/docs/config-architecture.md +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,12 @@ Run the default workflow:
|
|
|
45
45
|
pipe run "Implement PIPE-123 user-facing behavior"
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
Run a read-only repository inspection:
|
|
49
|
+
|
|
50
|
+
```shell
|
|
51
|
+
pipe run --workflow inspect "Report the app structure and available checks. Do not modify files."
|
|
52
|
+
```
|
|
53
|
+
|
|
48
54
|
The `pipe` binary also accepts the task directly:
|
|
49
55
|
|
|
50
56
|
```shell
|
package/dist/index.js
CHANGED
|
@@ -36123,6 +36123,12 @@ orchestrator:
|
|
|
36123
36123
|
hooks: {}
|
|
36124
36124
|
|
|
36125
36125
|
workflows:
|
|
36126
|
+
inspect:
|
|
36127
|
+
description: Read-only repository inspection workflow.
|
|
36128
|
+
nodes:
|
|
36129
|
+
- id: inspect
|
|
36130
|
+
kind: agent
|
|
36131
|
+
profile: pipeline-inspector
|
|
36126
36132
|
default:
|
|
36127
36133
|
description: Default research, red, green, verify, learn workflow.
|
|
36128
36134
|
nodes:
|
|
@@ -36261,6 +36267,20 @@ profiles:
|
|
|
36261
36267
|
output:
|
|
36262
36268
|
format: json_schema
|
|
36263
36269
|
schema_path: .pipeline/schemas/research.schema.json
|
|
36270
|
+
pipeline-inspector:
|
|
36271
|
+
runner: codex
|
|
36272
|
+
description: Inspect the repository without modifying files.
|
|
36273
|
+
instructions:
|
|
36274
|
+
path: .pipeline/prompts/inspector.md
|
|
36275
|
+
tools: [read, list, grep, glob, bash]
|
|
36276
|
+
filesystem:
|
|
36277
|
+
mode: read-only
|
|
36278
|
+
allow: ["**/*"]
|
|
36279
|
+
deny: ["node_modules/**", "dist/**", ".git/**"]
|
|
36280
|
+
network:
|
|
36281
|
+
mode: inherit
|
|
36282
|
+
output:
|
|
36283
|
+
format: text
|
|
36264
36284
|
pipeline-test-writer:
|
|
36265
36285
|
runner: codex
|
|
36266
36286
|
description: Add focused failing tests for the requested behavior.
|
|
@@ -36377,6 +36397,16 @@ var SCAFFOLD_FILES = {
|
|
|
36377
36397
|
"You are the research phase for the pipeline.",
|
|
36378
36398
|
"Inspect first-party source, tests, docs, and task context before proposing changes.",
|
|
36379
36399
|
"Write structured findings that identify relevant files, existing patterns, acceptance criteria, and risks.",
|
|
36400
|
+
"Return only valid JSON matching `.pipeline/schemas/research.schema.json`: an object with `findings` and `ac` arrays, plus optional `files`, `risks`, and `target`.",
|
|
36401
|
+
"Do not wrap the JSON in Markdown fences or add prose outside the JSON object.",
|
|
36402
|
+
""
|
|
36403
|
+
].join(`
|
|
36404
|
+
`),
|
|
36405
|
+
".pipeline/prompts/inspector.md": [
|
|
36406
|
+
"You are the read-only inspection phase for the pipeline.",
|
|
36407
|
+
"Inspect first-party source, tests, docs, and task context.",
|
|
36408
|
+
"Report the repository structure, available checks, important files, and notable risks.",
|
|
36409
|
+
"Do not modify files.",
|
|
36380
36410
|
""
|
|
36381
36411
|
].join(`
|
|
36382
36412
|
`),
|
|
@@ -36400,6 +36430,8 @@ var SCAFFOLD_FILES = {
|
|
|
36400
36430
|
"You are the VERIFY phase for the pipeline.",
|
|
36401
36431
|
"Run configured checks, review implementation fit, and report PASS or FAIL with evidence.",
|
|
36402
36432
|
"Do not mark the workflow passing without concrete verification evidence.",
|
|
36433
|
+
"Return only valid JSON matching `.pipeline/schemas/verify.schema.json`: an object with `verdict`, `evidence`, and optional `violations`.",
|
|
36434
|
+
"Do not wrap the JSON in Markdown fences or add prose outside the JSON object.",
|
|
36403
36435
|
""
|
|
36404
36436
|
].join(`
|
|
36405
36437
|
`),
|
|
@@ -36407,6 +36439,8 @@ var SCAFFOLD_FILES = {
|
|
|
36407
36439
|
"You are the LEARN phase for the pipeline.",
|
|
36408
36440
|
"Store durable lessons from the run when useful and report qdrant-store evidence.",
|
|
36409
36441
|
"Do not write local markdown knowledge as the durable sink.",
|
|
36442
|
+
"Return only valid JSON matching `.pipeline/schemas/learn.schema.json`: an object with `qdrant` and `evidence`.",
|
|
36443
|
+
"Do not wrap the JSON in Markdown fences or add prose outside the JSON object.",
|
|
36410
36444
|
""
|
|
36411
36445
|
].join(`
|
|
36412
36446
|
`),
|