Chemenu 2.1.0 - deterministischer Wissenskompiler
Chemenu kompiliert Rohnotizen zu einem verlinkten, quellengebundenen Wiki: raw/ -> types/ + tools/ -> kb/ -> reports/. Was mechanisch ist, macht tools/wikitool; was Urteil braucht, macht ein Agent unter Contracts, deren Grenzen in Code durchgesetzt sind statt im Prompt. Dieser Commit ist der Startpunkt der oeffentlichen Historie. Die vorherige Entwicklung fand in einer privaten Instanz statt und ist nicht Teil dieses Repositorys; ihre Erzaehlung steht vollstaendig in CHANGES.md, das mit 44 Eintraegen von 0.1.0 bis 2.1.0 erhalten geblieben ist. Der mitgelieferte Korpus ist ein Testbett und eine Demo: 170 Seiten ueber den Stack selbst - Gates, Lint, Versionierung, Suche, das Wiki-Muster. Er dokumentiert das Werkzeug mit den eigenen Mitteln des Werkzeugs. Lizenz: AGPL-3.0 fuer den Stack (tools/, types/), CC-BY-4.0 fuer die Inhalte. Die Grenze zwischen beiden ist der Dateiplan, den dist export berechnet - siehe NOTICE.
This commit is contained in:
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"version": 1,
|
||||
"hooks": {
|
||||
"sessionStart": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event session.start 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event session.start 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"sessionEnd": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event session.end 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event session.end 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"userPromptSubmitted": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event prompt.submitted 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event prompt.submitted 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"preToolUse": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event tool.pre 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event tool.pre 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"postToolUse": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event tool.post 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event tool.post 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"postToolUseFailure": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event tool.error 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event tool.error 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"errorOccurred": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event session.error 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event session.error 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"subagentStart": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event subagent.start 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event subagent.start 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"subagentStop": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event subagent.stop 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event subagent.stop 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"preCompact": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event compaction 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event compaction 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
],
|
||||
"agentStop": [
|
||||
{
|
||||
"type": "command",
|
||||
"bash": "./tools/trace_ingest.py --source copilot-cli --event turn.end 2>/dev/null || true",
|
||||
"powershell": "python tools/trace_ingest.py --source copilot-cli --event turn.end 2>$null; exit 0",
|
||||
"cwd": ".",
|
||||
"timeoutSec": 5
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user