added .ssh

This commit is contained in:
liph
2026-07-21 21:35:16 +02:00
parent 7b23a57221
commit 95956d123a
147 changed files with 5607 additions and 7 deletions
@@ -0,0 +1,52 @@
# Task for ollama-orchestrator
"list every file in the current
directory and tell me which one is most likely to contain a bug"
## Acceptance Contract
Acceptance level: attested
Completion is not accepted from prose alone. End with a structured acceptance report.
Criteria:
- criterion-1: Return a concise result and residual risks when applicable
Required evidence: manual-notes, residual-risks
Finish with a fenced JSON block tagged `acceptance-report` in this shape:
Use empty arrays when no items apply; array fields contain strings unless object entries are shown.
```acceptance-report
{
"criteriaSatisfied": [
{
"id": "criterion-1",
"status": "satisfied",
"evidence": "specific proof"
}
],
"changedFiles": [
"src/file.ts"
],
"testsAddedOrUpdated": [
"test/file.test.ts"
],
"commandsRun": [
{
"command": "command",
"result": "passed",
"summary": "short result"
}
],
"validationOutput": [
"validation output or concise summary"
],
"residualRisks": [
"none"
],
"noStagedFiles": true,
"diffSummary": "short description of the diff",
"reviewFindings": [
"blocker: file.ts:12 - issue found, or no blockers"
],
"manualNotes": "anything else the parent should know"
}
```
@@ -0,0 +1,37 @@
{
"runId": "187b7128",
"agent": "ollama-orchestrator",
"task": "\"list every file in the current\n directory and tell me which one is most likely to contain a bug\"",
"exitCode": 0,
"usage": {
"input": 46741,
"output": 3301,
"cacheRead": 0,
"cacheWrite": 0,
"cost": 0,
"turns": 5
},
"model": "ollama/minimax-m3:cloud:high",
"attemptedModels": [
"ollama/minimax-m3:cloud:high"
],
"modelAttempts": [
{
"model": "ollama/minimax-m3:cloud:high",
"success": true,
"exitCode": 0,
"usage": {
"input": 46741,
"output": 3301,
"cacheRead": 0,
"cacheWrite": 0,
"cost": 0,
"turns": 5
}
}
],
"durationMs": 42304,
"toolCount": 4,
"transcriptPath": "/home/liph/dotfiles/pi/.pi/agent/.pi-subagents/artifacts/187b7128_ollama-orchestrator_0_transcript.jsonl",
"timestamp": 1783169853950
}
@@ -0,0 +1,3 @@
Done. Wrote the result to `orchestration.md` in the current directory.
**Summary:** Listed all 15 entries (5 directories + 10 files) in `/home/liph/dotfiles/pi/.pi/agent`. Picked **`settings.json`** as the file most likely to contain a bug — it is the single tightly-coupled config that wires packages, default model, and the entire `subagents.agentOverrides` map, so a single typo or stale model id cascades into every tool/agent call. Caveat: this is a heuristic judgment based on coupling, not measured evidence (no static analysis, test run, or git-history hot-spotting was performed), and subdirectories were listed but not inspected.
File diff suppressed because one or more lines are too long