@oisincoveney/pipeline 1.27.16 → 1.27.17
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/dist/config.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/pipeline-init.js +1 -1
- package/docs/config-architecture.md +1 -1
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -452,6 +452,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
452
452
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
453
453
|
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
454
454
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
455
|
+
task: "task";
|
|
455
456
|
read: "read";
|
|
456
457
|
list: "list";
|
|
457
458
|
grep: "grep";
|
|
@@ -459,7 +460,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
459
460
|
bash: "bash";
|
|
460
461
|
edit: "edit";
|
|
461
462
|
write: "write";
|
|
462
|
-
task: "task";
|
|
463
463
|
}>>>;
|
|
464
464
|
}, z.core.$strict>>>;
|
|
465
465
|
runner_command: z.ZodDefault<z.ZodObject<{
|
|
@@ -511,6 +511,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
511
511
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
512
512
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
513
513
|
tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
514
|
+
task: "task";
|
|
514
515
|
read: "read";
|
|
515
516
|
list: "list";
|
|
516
517
|
grep: "grep";
|
|
@@ -518,7 +519,6 @@ declare const configSchema: z.ZodObject<{
|
|
|
518
519
|
bash: "bash";
|
|
519
520
|
edit: "edit";
|
|
520
521
|
write: "write";
|
|
521
|
-
task: "task";
|
|
522
522
|
}>>>;
|
|
523
523
|
}, z.core.$strict>;
|
|
524
524
|
command: z.ZodOptional<z.ZodString>;
|
package/dist/index.js
CHANGED
|
@@ -429,7 +429,7 @@ function lintMissingFileReferences(config, projectRoot) {
|
|
|
429
429
|
}
|
|
430
430
|
function missingFileReferenceMessage(path, value) {
|
|
431
431
|
const base = `${path} references missing file '${value}'`;
|
|
432
|
-
if (path.startsWith("skills.") && value.startsWith(".agents/skills/")) return `${base}. Run \`moka init\` to install project-local skills with \`npx --yes skills add
|
|
432
|
+
if (path.startsWith("skills.") && value.startsWith(".agents/skills/")) return `${base}. Run \`moka init\` to install project-local skills with \`npx --yes skills add oisin-ee/skills\`.`;
|
|
433
433
|
return base;
|
|
434
434
|
}
|
|
435
435
|
function resolveLintPathReference(projectRoot, ref) {
|
package/dist/pipeline-init.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { installCommands } from "./install-commands.js";
|
|
2
2
|
import { execa } from "execa";
|
|
3
3
|
//#region src/pipeline-init.ts
|
|
4
|
-
const DEFAULT_SKILL_INSTALL_SOURCE = "
|
|
4
|
+
const DEFAULT_SKILL_INSTALL_SOURCE = "oisin-ee/skills";
|
|
5
5
|
const DEFAULT_SKILL_INSTALL_ARGS = [
|
|
6
6
|
"--agent",
|
|
7
7
|
"opencode",
|
|
@@ -152,7 +152,7 @@ receive explicit grants:
|
|
|
152
152
|
- `output`: text, JSON, JSONL, or JSON Schema output.
|
|
153
153
|
|
|
154
154
|
Default skills resolve from project-installed skill files created by
|
|
155
|
-
`moka init` via `npx --yes skills add
|
|
155
|
+
`moka init` via `npx --yes skills add oisin-ee/skills`:
|
|
156
156
|
|
|
157
157
|
```yaml
|
|
158
158
|
skills:
|
package/package.json
CHANGED
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"prepack": "bun run build:cli"
|
|
119
119
|
},
|
|
120
120
|
"type": "module",
|
|
121
|
-
"version": "1.27.
|
|
121
|
+
"version": "1.27.17",
|
|
122
122
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
123
123
|
"main": "./dist/index.js",
|
|
124
124
|
"types": "./dist/index.d.ts",
|