Pre-public-launch cleanup. 17 files touched. Grep verification confirms
only Tier 4 (intentional GTM attribution) remains: README + docs/PHILOSOPHY
credit to Denis Parfionovich / KeiLab.
## Tier 1 — INFRA-LEAKS (4 targets, 1 file)
- _blocks/ci-forgejo-actions.md: Tailscale IPs 100.91.246.53 removed,
kgl-runner-01 → my-runner-01, SSH fingerprint line deleted, Forgejo
topology description generalised to "private interface"
## Tier 2 — PATENT-FLAG PROSE (4 files, ~10 edits)
- _manifests/kei-{modal-runner,ml-implementer,infra-implementer}.toml:
"proprietary/non-public-deploy" → "private/non-public-deploy"
- _blocks/ci-forgejo-actions.md: RULE 0.1 sensitive IP references softened
to generic "sensitive IP / compliance / air-gap" framing
## Tier 3 — INTERNAL PROJECT NAMES (8 files)
- kei-provision/tests/backend_smoke.rs: kgl-* fixtures → test-srv-*/test-vultr
- kei-auth/tests/integration.rs: project: "kgl" → "demo"
- kei-memory/src/coaccess.rs: "PROJECT-C/Genesis" origin → "in-house implementation"
- _primitives/{tomd.sh,README.md}: PROJECT-D provenance removed
- _bridges/README.md: PROJECT-D cross-ref line deleted
- skills/site-create/: keiagent/fal.ai → generic AI-asset generator
- skills/self-audit/: hardcoded project paths → ~/Projects/my-project
- skills/compose-solution/: hardcoded ~/Projects/PROJECT-E →
${KEISEI_BUNDLE_PATH:-} env-conditional lookup
- skills/sleep-setup/: forgejo.example.com → forgejo.example.com
## Phase 2 — Regenerated 3 root .md (Option B manual)
Assembler invocation blocked by sandbox; fell back to manual Edit on
kei-ml-implementer.md + kei-infra-implementer.md + kei-modal-runner.md
with same Tier-2 replacements as their source manifests.
## Known residual (Phase 3 pending user decision)
Git history still contains 619+ patent-term hits (pre-rewrite). Filter-repo
on /tmp/keisei-mirror.git prepared by separate agent; force-push
pending user approval because `genesis-scan` / `genesis-leak-guard` are
intentional kit features — naive rewrite would break them.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
30 lines
1.3 KiB
Markdown
30 lines
1.3 KiB
Markdown
# \_primitives — first-class building blocks
|
|
|
|
`_primitives/` holds standalone utilities that agents, hooks, and skills
|
|
(including `/compose-solution`) depend on. Unlike `_blocks/` (behavioral
|
|
markdown) or `_manifests/` (agent TOML), primitives are executable shell
|
|
programs installed at `$HOME/.claude/agents/_primitives/` by `install.sh`.
|
|
|
|
## Current primitives
|
|
|
|
| Primitive | Purpose | Invocation |
|
|
|---|---|---|
|
|
| `tomd.sh` | Universal non-native-format → markdown converter (PDF, DOCX, XLSX, PPTX, CSV, images, code). | `~/.claude/agents/_primitives/tomd.sh <file>` |
|
|
|
|
`tomd.sh` is a first-class primitive. Universal non-native-format →
|
|
markdown converter with configurable cache directory
|
|
(`KEISEI_TOMD_CACHE`) and KeiSeiKit-style error tags (`[tomd]`).
|
|
|
|
## Hook integration
|
|
|
|
`hooks/tomd-preread.sh` is a PreToolUse(Read) hook that auto-redirects
|
|
Claude to the converted markdown when a Read targets `.docx / .doc / .xlsx /
|
|
.pptx / .csv`. Cached under `$KEISEI_TOMD_CACHE` (default
|
|
`/tmp/keisei-tomd-cache`).
|
|
|
|
## `/compose-solution` discovery
|
|
|
|
Phase 3 prior-art sweep greps `_primitives/` alongside `_blocks/`,
|
|
`_manifests/`, `skills/`, `_bridges/`, `hooks/`. If a user task involves
|
|
file-format parsing, the meta-composer surfaces `tomd` automatically —
|
|
reuse over rewrite (RULE "No Patching").
|