mishkan-harness 0.2.3 → 0.2.5
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 +1 -1
- package/docs/design/MISHKAN_observability.md +2 -2
- package/docs/usage/01-installation.md +1 -1
- package/docs/usage/11-graphify.md +2 -2
- package/package.json +1 -1
- package/payload/mishkan/commands/mishkan-resume.md +19 -5
- package/payload/mishkan/observability/watch/pyproject.toml +2 -2
- package/payload/mishkan/observability/watch/src/mishkan_watch/__init__.py +1 -1
- package/payload/mishkan/observability/watchd/pyproject.toml +1 -1
- package/payload/mishkan/observability/watchd/src/mishkan_watchd/__init__.py +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ MISHKAN turns Claude Code into a standing engineering organisation. Quality and
|
|
|
14
14
|
|
|
15
15
|
It's personal, opinionated infrastructure built around one engineer's standards. To make it yours, replace `docs/engineer/profile.md` and re-sync — nothing else hardcodes the author.
|
|
16
16
|
|
|
17
|
-
> **v0.2.
|
|
17
|
+
> **v0.2.5** — agent fleet, rules, hooks, installer are stable. Cognee knowledge stack ready to bring up locally. Observability stack (watchd + TUI) available as two `uv tool`-installable packages.
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
@@ -25,7 +25,7 @@ foundation with:
|
|
|
25
25
|
3. **A TUI client (`mishkan-watch`)** — Textual app. 8 tabs, key-driven, no
|
|
26
26
|
overload. Reads the daemon snapshot+delta stream, renders the view, never
|
|
27
27
|
touches files directly. Tabs 1-5 are live; tabs 6-8 (Org-Ref · Usage ·
|
|
28
|
-
Skills) are reference/analytical views added at v0.2.
|
|
28
|
+
Skills) are reference/analytical views added at v0.2.3.
|
|
29
29
|
|
|
30
30
|
The TUI runs in any terminal (tmux pane, standalone window, attached over SSH).
|
|
31
31
|
It is a passive observer — it never writes to harness state, never alters
|
|
@@ -64,7 +64,7 @@ directory paths. Nothing has to be registered in a config file.
|
|
|
64
64
|
|
|
65
65
|
The TUI defaults to ONE view that answers "what is happening right now?". All
|
|
66
66
|
historical depth lives behind explicit key presses. v0.2.0 shipped with a
|
|
67
|
-
5-tab layout (Live · Agents · Workflows · Knowledge · Activity); v0.2.
|
|
67
|
+
5-tab layout (Live · Agents · Workflows · Knowledge · Activity); v0.2.3
|
|
68
68
|
added three reference/analytical tabs (Org-Ref · Usage · Skills) for
|
|
69
69
|
recall and analysis without disturbing the live view. The 8-tab layout
|
|
70
70
|
is the new upper bound; if a ninth dimension matters we replace, not add.
|
|
@@ -255,8 +255,8 @@ opted out of the structural layer.
|
|
|
255
255
|
- [D-008](../design/MISHKAN_decisions.md#d-008) — three-store knowledge
|
|
256
256
|
epistemology.
|
|
257
257
|
- [D-009](../design/MISHKAN_decisions.md#d-009) — graph-first PreToolUse
|
|
258
|
-
advisory hook (Phase 1 telemetry-only
|
|
259
|
-
|
|
258
|
+
advisory hook (Phase 1 telemetry-only, Phase 2 advisory injection —
|
|
259
|
+
both shipped v0.2.3).
|
|
260
260
|
- [POC report](../research/graphify-token-saving-poc.md) — verified
|
|
261
261
|
88.1× reduction on the MISHKAN harness, 2026-06-07.
|
|
262
262
|
- [Memory layer](./04-memory-layer.md) — the Cognee work and curated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mishkan-harness",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "MISHKAN — a personal advanced SWE R&D harness for Claude Code: 45 biblically-named agents across six teams, deterministic rules + hooks, a shared research pipeline, dependency/supply-chain vetting, and a Cognee-backed knowledge graph. Installs into ~/.claude.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -7,15 +7,29 @@ SessionStart hook.
|
|
|
7
7
|
|
|
8
8
|
Do the following:
|
|
9
9
|
|
|
10
|
-
1.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
1. **Sync the repo before reading anything.** Run `git fetch origin --tags --prune`,
|
|
11
|
+
then compare local to remote: `git rev-list --left-right --count origin/main...HEAD`
|
|
12
|
+
(behind/ahead), `git status --short`, and the published version/tag vs
|
|
13
|
+
`package.json`. The local view is not trusted until reconciled — the working
|
|
14
|
+
copy can sit behind the remote with a stale version or tag. If local is a
|
|
15
|
+
clean fast-forward behind the remote, fast-forward it (`git merge --ff-only`)
|
|
16
|
+
and say so; a fast-forward is local and reversible. Never `git push` here.
|
|
17
|
+
Surface any divergence (behind/ahead count, version vs published-tag mismatch,
|
|
18
|
+
dirty tree) as part of the greeting.
|
|
19
|
+
2. Read `./CLAUDE.md` for the current sprint, milestone, mode, tasks, and blockers.
|
|
20
|
+
If there is none, this is the harness source repo (not a scaffolded project) —
|
|
21
|
+
say so plainly and report delivery state (branch, version, last release) instead
|
|
22
|
+
of fabricating a sprint board.
|
|
23
|
+
3. Query Cognee (project namespace) for active blockers, open Mishmar flags, and
|
|
24
|
+
pending decisions. If the Cognee stores are not up, say so — do not invent
|
|
25
|
+
query results.
|
|
26
|
+
4. As **Nehemiah**, greet Y4NN with a tight context summary:
|
|
27
|
+
- repo sync state (in sync / behind N / ahead N), version + last release
|
|
14
28
|
- current sprint + milestone + mode
|
|
15
29
|
- open tasks (id, description, status, owner)
|
|
16
30
|
- blockers — Mishmar flags first, with severity
|
|
17
31
|
- pending decisions awaiting Y4NN
|
|
18
|
-
|
|
32
|
+
5. Ask where Y4NN wants to start.
|
|
19
33
|
|
|
20
34
|
Keep it lean — surface state, do not dump raw logs. No code is written by this
|
|
21
35
|
command. English only.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mishkan-watch"
|
|
3
|
-
version = "0.
|
|
4
|
-
description = "MISHKAN observability TUI — Textual client that reads the mishkan-watchd UNIX socket and renders the
|
|
3
|
+
version = "0.2.5"
|
|
4
|
+
description = "MISHKAN observability TUI — Textual client that reads the mishkan-watchd UNIX socket and renders the 8-tab dashboard."
|
|
5
5
|
readme = "../README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
7
7
|
license = {text = "MIT"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mishkan-watchd"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.5"
|
|
4
4
|
description = "MISHKAN observability daemon — aggregates event bus + filesystem polls into a UNIX-socket snapshot+delta stream for mishkan-watch."
|
|
5
5
|
readme = "../README.md"
|
|
6
6
|
requires-python = ">=3.11"
|