@polderlabs/bizar-omp 0.2.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/LICENSE +21 -0
- package/README.md +45 -0
- package/agents/bizar-architect.md +10 -0
- package/agents/bizar-docs.md +10 -0
- package/agents/bizar-implementer.md +10 -0
- package/agents/bizar-planner.md +10 -0
- package/agents/bizar-researcher.md +10 -0
- package/agents/bizar-reviewer.md +10 -0
- package/agents/bizar-security-reviewer.md +10 -0
- package/agents/bizar-verifier.md +10 -0
- package/dist/cli/doctor.d.ts +36 -0
- package/dist/cli/doctor.d.ts.map +1 -0
- package/dist/cli/doctor.js +15 -0
- package/dist/cli/doctor.js.map +1 -0
- package/dist/cli/install.d.ts +126 -0
- package/dist/cli/install.d.ts.map +1 -0
- package/dist/cli/install.js +148 -0
- package/dist/cli/install.js.map +1 -0
- package/dist/cli/main.d.ts +3 -0
- package/dist/cli/main.d.ts.map +1 -0
- package/dist/cli/main.js +76 -0
- package/dist/cli/main.js.map +1 -0
- package/dist/cli/migrate.d.ts +19 -0
- package/dist/cli/migrate.d.ts.map +1 -0
- package/dist/cli/migrate.js +14 -0
- package/dist/cli/migrate.js.map +1 -0
- package/dist/cli/run.d.ts +3 -0
- package/dist/cli/run.d.ts.map +1 -0
- package/dist/cli/run.js +5 -0
- package/dist/cli/run.js.map +1 -0
- package/dist/core/errors.d.ts +21 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/errors.js +30 -0
- package/dist/core/errors.js.map +1 -0
- package/dist/core/evidence.d.ts +6 -0
- package/dist/core/evidence.d.ts.map +1 -0
- package/dist/core/evidence.js +31 -0
- package/dist/core/evidence.js.map +1 -0
- package/dist/core/policies.d.ts +10 -0
- package/dist/core/policies.d.ts.map +1 -0
- package/dist/core/policies.js +41 -0
- package/dist/core/policies.js.map +1 -0
- package/dist/core/recovery.d.ts +7 -0
- package/dist/core/recovery.d.ts.map +1 -0
- package/dist/core/recovery.js +56 -0
- package/dist/core/recovery.js.map +1 -0
- package/dist/core/transitions.d.ts +14 -0
- package/dist/core/transitions.d.ts.map +1 -0
- package/dist/core/transitions.js +59 -0
- package/dist/core/transitions.js.map +1 -0
- package/dist/core/types.d.ts +204 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +2 -0
- package/dist/core/types.js.map +1 -0
- package/dist/extension.d.ts +43 -0
- package/dist/extension.d.ts.map +1 -0
- package/dist/extension.js +199 -0
- package/dist/extension.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -0
- package/dist/omp/autonomous-settings.d.ts +9 -0
- package/dist/omp/autonomous-settings.d.ts.map +1 -0
- package/dist/omp/autonomous-settings.js +47 -0
- package/dist/omp/autonomous-settings.js.map +1 -0
- package/dist/omp/compatibility.d.ts +22 -0
- package/dist/omp/compatibility.d.ts.map +1 -0
- package/dist/omp/compatibility.js +4 -0
- package/dist/omp/compatibility.js.map +1 -0
- package/dist/omp/completion.d.ts +8 -0
- package/dist/omp/completion.d.ts.map +1 -0
- package/dist/omp/completion.js +14 -0
- package/dist/omp/completion.js.map +1 -0
- package/dist/omp/config.d.ts +11 -0
- package/dist/omp/config.d.ts.map +1 -0
- package/dist/omp/config.js +13 -0
- package/dist/omp/config.js.map +1 -0
- package/dist/omp/context.d.ts +16 -0
- package/dist/omp/context.d.ts.map +1 -0
- package/dist/omp/context.js +3 -0
- package/dist/omp/context.js.map +1 -0
- package/dist/omp/dispatch-admission.d.ts +3 -0
- package/dist/omp/dispatch-admission.d.ts.map +1 -0
- package/dist/omp/dispatch-admission.js +12 -0
- package/dist/omp/dispatch-admission.js.map +1 -0
- package/dist/omp/integration-recovery.d.ts +11 -0
- package/dist/omp/integration-recovery.d.ts.map +1 -0
- package/dist/omp/integration-recovery.js +18 -0
- package/dist/omp/integration-recovery.js.map +1 -0
- package/dist/omp/isolation-policy.d.ts +15 -0
- package/dist/omp/isolation-policy.d.ts.map +1 -0
- package/dist/omp/isolation-policy.js +9 -0
- package/dist/omp/isolation-policy.js.map +1 -0
- package/dist/omp/lifecycle.d.ts +15 -0
- package/dist/omp/lifecycle.d.ts.map +1 -0
- package/dist/omp/lifecycle.js +14 -0
- package/dist/omp/lifecycle.js.map +1 -0
- package/dist/omp/memory.d.ts +17 -0
- package/dist/omp/memory.d.ts.map +1 -0
- package/dist/omp/memory.js +4 -0
- package/dist/omp/memory.js.map +1 -0
- package/dist/omp/model-roles.d.ts +10 -0
- package/dist/omp/model-roles.d.ts.map +1 -0
- package/dist/omp/model-roles.js +5 -0
- package/dist/omp/model-roles.js.map +1 -0
- package/dist/omp/result-reconciliation.d.ts +3 -0
- package/dist/omp/result-reconciliation.d.ts.map +1 -0
- package/dist/omp/result-reconciliation.js +9 -0
- package/dist/omp/result-reconciliation.js.map +1 -0
- package/dist/omp/rpc.d.ts +62 -0
- package/dist/omp/rpc.d.ts.map +1 -0
- package/dist/omp/rpc.js +4 -0
- package/dist/omp/rpc.js.map +1 -0
- package/dist/storage/journal.d.ts +13 -0
- package/dist/storage/journal.d.ts.map +1 -0
- package/dist/storage/journal.js +72 -0
- package/dist/storage/journal.js.map +1 -0
- package/dist/storage/migrations.d.ts +9 -0
- package/dist/storage/migrations.d.ts.map +1 -0
- package/dist/storage/migrations.js +38 -0
- package/dist/storage/migrations.js.map +1 -0
- package/dist/storage/repository-identity.d.ts +12 -0
- package/dist/storage/repository-identity.d.ts.map +1 -0
- package/dist/storage/repository-identity.js +67 -0
- package/dist/storage/repository-identity.js.map +1 -0
- package/dist/tools/evidence.d.ts +9 -0
- package/dist/tools/evidence.d.ts.map +1 -0
- package/dist/tools/evidence.js +9 -0
- package/dist/tools/evidence.js.map +1 -0
- package/dist/tools/integrate.d.ts +13 -0
- package/dist/tools/integrate.d.ts.map +1 -0
- package/dist/tools/integrate.js +106 -0
- package/dist/tools/integrate.js.map +1 -0
- package/dist/tools/result.d.ts +10 -0
- package/dist/tools/result.d.ts.map +1 -0
- package/dist/tools/result.js +2 -0
- package/dist/tools/result.js.map +1 -0
- package/dist/tools/verify.d.ts +14 -0
- package/dist/tools/verify.d.ts.map +1 -0
- package/dist/tools/verify.js +37 -0
- package/dist/tools/verify.js.map +1 -0
- package/dist/tools/workflow.d.ts +9 -0
- package/dist/tools/workflow.d.ts.map +1 -0
- package/dist/tools/workflow.js +65 -0
- package/dist/tools/workflow.js.map +1 -0
- package/dist/workflows/direct.d.ts +10 -0
- package/dist/workflows/direct.d.ts.map +1 -0
- package/dist/workflows/direct.js +2 -0
- package/dist/workflows/direct.js.map +1 -0
- package/dist/workflows/implement.d.ts +3 -0
- package/dist/workflows/implement.d.ts.map +1 -0
- package/dist/workflows/implement.js +4 -0
- package/dist/workflows/implement.js.map +1 -0
- package/dist/workflows/plan.d.ts +18 -0
- package/dist/workflows/plan.d.ts.map +1 -0
- package/dist/workflows/plan.js +6 -0
- package/dist/workflows/plan.js.map +1 -0
- package/dist/workflows/research.d.ts +16 -0
- package/dist/workflows/research.d.ts.map +1 -0
- package/dist/workflows/research.js +2 -0
- package/dist/workflows/research.js.map +1 -0
- package/dist/workflows/review.d.ts +16 -0
- package/dist/workflows/review.d.ts.map +1 -0
- package/dist/workflows/review.js +2 -0
- package/dist/workflows/review.js.map +1 -0
- package/dist/workflows/verify.d.ts +10 -0
- package/dist/workflows/verify.d.ts.map +1 -0
- package/dist/workflows/verify.js +2 -0
- package/dist/workflows/verify.js.map +1 -0
- package/docs/compatibility/baseline.json +8 -0
- package/docs/compatibility/lifecycle-observation.md +5 -0
- package/docs/compatibility/phase-0-report.md +5 -0
- package/docs/compatibility/recovery-report.md +3 -0
- package/docs/compatibility/supported-surfaces.json +7 -0
- package/docs/decisions/native-api-boundary.md +5 -0
- package/docs/evaluations/baseline.md +3 -0
- package/docs/migration/agent-disposition.json +6 -0
- package/docs/migration/final-disposition.json +9 -0
- package/docs/migration/legacy-inventory.json +16 -0
- package/docs/releases/0.2.0.md +9 -0
- package/docs/releases/beta-acceptance.md +3 -0
- package/docs/releases/native-stable.md +3 -0
- package/docs/releases/npm-publishing.md +22 -0
- package/docs/releases/rollback.md +3 -0
- package/docs/releases/support-matrix.md +11 -0
- package/docs/security/qualification.md +3 -0
- package/docs/security/threat-model.md +5 -0
- package/optional/openkan/index.ts +3 -0
- package/package.json +59 -0
- package/prompts/bizar-system.md +3 -0
- package/rules/bizar-core.md +7 -0
- package/rules/bizar-native-omp.md +6 -0
- package/schemas/evidence-record.schema.json +16 -0
- package/schemas/workflow-run.schema.json +16 -0
- package/skills/bizar-architecture/SKILL.md +6 -0
- package/skills/bizar-planning/SKILL.md +6 -0
- package/skills/bizar-research/SKILL.md +6 -0
- package/skills/bizar-review/SKILL.md +6 -0
- package/skills/bizar-security/SKILL.md +6 -0
- package/skills/bizar-testing/SKILL.md +6 -0
- package/skills/bizar-workflow/SKILL.md +6 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# npm publishing
|
|
2
|
+
|
|
3
|
+
Package: `@polderlabs/bizar-omp` (public). Repository remains private.
|
|
4
|
+
|
|
5
|
+
Configure the package's npm **Trusted Publisher** as:
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Provider | GitHub Actions |
|
|
10
|
+
| Organization or user | `PolderLabsVOF` |
|
|
11
|
+
| Repository | `BizarHarness-OMP` |
|
|
12
|
+
| Workflow filename | `release.yml` |
|
|
13
|
+
| Environment | Leave blank |
|
|
14
|
+
| Allowed actions | Direct `npm publish` |
|
|
15
|
+
|
|
16
|
+
The first release uses the authenticated maintainer CLI to create the package. After npm configuration, `.github/workflows/release.yml` uses GitHub-hosted runners, Node 24, npm 11.16.0, and `id-token: write`; no npm token secret is required. Do not use `npm whoami` to test OIDC: token exchange happens during publication.
|
|
17
|
+
|
|
18
|
+
Release procedure: increment package/package-lock/baseline versions together, update notes, open a PR, pass CI, merge, then push an exact `vX.Y.Z` tag from main. The release job checks tag/version identity and main ancestry, typechecks, tests, verifies docs, and exercises the packed installer before publishing. Published versions cannot be overwritten. A manual workflow dispatch must select an existing release tag.
|
|
19
|
+
|
|
20
|
+
The repository is private, so npm provenance is disabled; OIDC authentication still works. Do not advertise provenance for this release. If repository visibility changes, reevaluate provenance separately.
|
|
21
|
+
|
|
22
|
+
Reference: [npm trusted publishing documentation](https://docs.npmjs.com/trusted-publishers/).
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# Rollback
|
|
2
|
+
|
|
3
|
+
The package has no user-state migration in beta. Workflow state is append-only JSONL under the Git common directory and is not deleted by uninstall. A failed migration is dry-run by default; the current `--apply` path remains non-destructive until an item-specific handler exists. Rollback therefore means selecting the prior plugin version and retaining the journal/artifacts for inspection.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Support matrix
|
|
2
|
+
|
|
3
|
+
| Surface | Qualification |
|
|
4
|
+
| --- | --- |
|
|
5
|
+
| Node | 22.x and 24.x in CI |
|
|
6
|
+
| Bun | 1.3.14 compatibility job |
|
|
7
|
+
| OMP | 18.2.2 at commit `60c9a115b2e8decc0f75825459362d14188a8bc0` |
|
|
8
|
+
| Install | `omp plugin link <checkout>` and `omp plugin install <package-spec>` are the intended host paths |
|
|
9
|
+
| Security | Trusted in-process extension; native task isolation required for managed editing |
|
|
10
|
+
|
|
11
|
+
Upstream API changes require a new baseline entry and contract run; the package does not widen a version range to hide an unqualified runtime.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# Security qualification
|
|
2
|
+
|
|
3
|
+
The automated suite verifies schema validation, path-scope admission, stale-target rejection, idempotency, journal ownership, and no-auto-application policy. It does not prove hostile-code containment. OMP extension modules remain trusted in-process code, and a task's isolated workspace is not equivalent to a complete filesystem/network/credential sandbox.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Threat model and trust presets
|
|
2
|
+
|
|
3
|
+
The extension is trusted local code and runs in the OMP host process. Markdown, repository files, model output, worker messages, and web pages are data; none can change Bizar configuration or journal ownership. JSONL journal paths are resolved from the repository identity, never from generated task text.
|
|
4
|
+
|
|
5
|
+
The installer selects trusted-development behavior: ordinary tools are auto-approved, while explicit user deny/prompt rules remain in effect. The core contains policy helpers for restricted-managed and untrusted-repository modes, but this release does not intercept every native task/eval route. Do not treat those helpers as an enforced sandbox. Untrusted code requires a separate OS/container boundary. Symlink, nested-repository, ignored-file, credential, and subprocess risks require separate qualification.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { spawn } from "node:child_process";
|
|
2
|
+
export function openkanCommand(args: string[]) { if (args.some(arg => arg.startsWith("--" ) && arg.includes("storage"))) throw new Error("OpenKan storage internals are not a supported adapter surface"); return ["ok", ...args]; }
|
|
3
|
+
export async function runOpenKan(args: string[], cwd: string): Promise<{ code: number; stdout: string; stderr: string }> { const argv = openkanCommand(args); return new Promise(resolve => { const child = spawn(argv[0], argv.slice(1), { cwd, stdio: ["ignore", "pipe", "pipe"] }); let stdout = ""; let stderr = ""; child.stdout.on("data", data => { stdout += data; }); child.stderr.on("data", data => { stderr += data; }); child.on("close", code => resolve({ code: code ?? 1, stdout, stderr })); }); }
|
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@polderlabs/bizar-omp",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Native oh-my-pi engineering workflow extension with typed evidence and serialized integration.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=22",
|
|
8
|
+
"bun": ">=1.3.14"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"bizar-omp": "dist/cli/main.js"
|
|
12
|
+
},
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./extension": "./dist/extension.js"
|
|
19
|
+
},
|
|
20
|
+
"omp": {
|
|
21
|
+
"extensions": [
|
|
22
|
+
"./dist/extension.js"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist/",
|
|
27
|
+
"agents/",
|
|
28
|
+
"skills/",
|
|
29
|
+
"rules/",
|
|
30
|
+
"prompts/",
|
|
31
|
+
"schemas/",
|
|
32
|
+
"optional/",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE",
|
|
35
|
+
"docs/"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc -p tsconfig.build.json",
|
|
39
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"test:watch": "vitest",
|
|
42
|
+
"verify:package": "npm run build && node scripts/verify-package.mjs",
|
|
43
|
+
"verify:docs": "node scripts/check-generated-docs.mjs",
|
|
44
|
+
"verify:omp": "bun scripts/verify-omp-install.mjs",
|
|
45
|
+
"pack:check": "npm pack --dry-run",
|
|
46
|
+
"prepack": "npm run verify:package"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/PolderLabsVOF/BizarHarness-OMP.git"
|
|
51
|
+
},
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" },
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^22.0.0",
|
|
56
|
+
"typescript": "^5.6.0",
|
|
57
|
+
"vitest": "^4.1.9"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# Bizar system prompt
|
|
2
|
+
|
|
3
|
+
You are operating the Bizar engineering layer inside oh-my-pi. Work directly when a task is contained; delegate only when isolation, independence, or specialization changes the outcome. Keep workflow state, evidence, and integration admission explicit. OMP owns execution and credentials. Verify before claiming completion, and report limitations plainly.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Bizar core rules
|
|
2
|
+
|
|
3
|
+
- Only the run owner writes authoritative workflow transitions.
|
|
4
|
+
- Every consequential effect gets a durable intent before its observed result.
|
|
5
|
+
- Evidence is target-bound, source-attributed, and stale after relevant changes.
|
|
6
|
+
- Unknown outcomes block completion and are reconciled from host state.
|
|
7
|
+
- Managed editing is isolated and never auto-applied.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Native OMP rules
|
|
2
|
+
|
|
3
|
+
- Register extension handlers during factory load; perform actions from lifecycle, command, or tool execution.
|
|
4
|
+
- Use OMP's native task/eval and model/auth surfaces; do not create a second worker runtime.
|
|
5
|
+
- Do not treat OMP extension code as sandboxed.
|
|
6
|
+
- Use `omp.extensions` in the package manifest and qualify exact runtime baselines.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://github.com/PolderLabsVOF/BizarHarness-OMP/schemas/evidence-record.schema.json",
|
|
4
|
+
"title": "Bizar OMP evidence record",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["id", "runId", "type", "checkId", "result", "targetDigest", "stale", "provenance"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"id": { "type": "string" },
|
|
9
|
+
"runId": { "type": "string" },
|
|
10
|
+
"type": { "enum": ["test", "lint", "typecheck", "review", "research", "worker", "git", "manual"] },
|
|
11
|
+
"result": { "enum": ["passed", "failed", "blocked", "cancelled", "unknown"] },
|
|
12
|
+
"targetDigest": { "type": "string", "minLength": 1 },
|
|
13
|
+
"stale": { "type": "boolean" }
|
|
14
|
+
},
|
|
15
|
+
"additionalProperties": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://github.com/PolderLabsVOF/BizarHarness-OMP/schemas/workflow-run.schema.json",
|
|
4
|
+
"title": "Bizar OMP workflow run",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["schemaVersion", "runId", "projectId", "objectiveHash", "revision", "phase"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"schemaVersion": { "const": 1 },
|
|
9
|
+
"runId": { "type": "string", "pattern": "^run_" },
|
|
10
|
+
"projectId": { "type": "string", "minLength": 1 },
|
|
11
|
+
"objectiveHash": { "type": "string", "pattern": "^[a-f0-9]{64}$" },
|
|
12
|
+
"revision": { "type": "integer", "minimum": 0 },
|
|
13
|
+
"phase": { "enum": ["created", "orienting", "researching", "planning", "ready", "executing", "integrating", "verifying", "reviewing", "complete", "blocked", "failed", "cancelled"] }
|
|
14
|
+
},
|
|
15
|
+
"additionalProperties": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-architecture
|
|
3
|
+
description: Design native OMP boundaries without importing private runtime internals.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
OMP owns sessions, providers, tools, workers, isolation, and artifacts. Bizar owns workflow intent, evidence, acceptance, and integration eligibility. Use public extension seams; record an upstream gap and disable an uncovered route rather than importing a private executor.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-planning
|
|
3
|
+
description: Write bounded implementation plans that cannot perform implementation effects.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Plans contain objective, non-goals, constraints, acceptance, dependencies, ownership, verification, material unknowns, risks, and stop conditions. Plan mode is read-only; it cannot write implementation files or auto-apply native task results.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-research
|
|
3
|
+
description: Record primary-source research without turning assumptions into policy.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
For version-sensitive OMP behavior, record the exact source URL, commit/tag, location, retrieval date, and supported claim. Label repository facts, external facts, inferences, and unknowns separately. Stop when additional sources are unlikely to change the decision.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-review
|
|
3
|
+
description: Review and refute findings on the exact candidate revision.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Preserve the full finding handoff: target revision, path/location, scenario, severity, evidence, reproduction, and why the change introduces or exposes it. Refutation must attempt to disprove the finding with counter-evidence.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-security
|
|
3
|
+
description: Apply honest trust and isolation language to workflow decisions.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Path scopes and tool policies are not an OS sandbox. Require a real host isolation backend for untrusted repositories and keep extension code trusted. Protect credentials, reject path traversal, and never accept journal paths supplied by generated task text.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-testing
|
|
3
|
+
description: Produce fresh, target-bound proving evidence.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Use exact command arguments, working directory, toolchain identity, target digest, exit status, bounded output, and artifact hashes. Re-run invalidated checks after integration. Never infer a pass from a missing result or prose.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bizar-workflow
|
|
3
|
+
description: Use the native Bizar workflow/evidence lifecycle safely.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
The workflow tool is the source for the next admissible action. Create an objective with acceptance criteria, preserve revision checks, admit managed editing with `apply: false`, reconcile the observed native result, verify the exact target, and integrate only through the serialized path. A task acknowledgment is not completion.
|