| name | 187web-manifest |
| description | Use when compiling the 187SKILLS manifest, selecting a prompt, or routing a Layer-4 viral/elegant prompt. |
| model_adapter | chatgpt |
ChatGPT adapter: Use the markdown below as the custom GPT / system instructions. Source: ../../.claude/skills/187web-manifest/SKILL.md.
187WEB Manifest — Master Prompt Manifest
Suite: Charlotte v2 stack. Parent:
187web-ecosystem · Compiler:
scripts/187web-compiler.sh · Registry: references/MANIFEST.xml
The manifest is the Library of Skills — 27 high-density XML-compiled prompts
ready for the pre-prompt-compiler to inject into agentic sessions. One manifest,
zero drift across long-run coding sessions.
Load this skill when you need to select, compile, or inject a specific
prompt; initialize a long-run session; or route Layer 4 viral prompts (UI audit,
A11y, XSS, state machines).
187SKILLS registry
In addition to the 27 manifest prompts, the registry now routes the 16 first-class
public skills and 2 suite-wide subskills defined in docs/SKILL-CONTRACT.md. The
compiler treats each skill as a routable directive with its own frontmatter,
references, and templates.
Canonical skill roster: 187REPO 187CRAFT 187VIBE 187LAUNCH 187FREE 187RESEARCH 187SEO 187REVENUE 187DOCS 187WRITE 187LEARN 187TEST 187ACCESS+ 187INCLUDE 187VERSION 187PUBLISH.
When to use this
- Starting a long-run session — run compiler, read
PLAN.md, inject compiled JSON.
- User names a manifest prompt (
ui-aesthetic-auditor, task-identification-extraction).
- Hardware is edge/low-power and persona must downgrade automatically.
- Building OmniQube telemetry or vault-data integration pipelines.
Manifest layers
| Layer | Name | Count | Routes to |
|---|
| 1 | Native OS Productivity | 5 | widow-weaver |
| 2 | Corporate & Workflow | 4 | widow-weaver (+ {{SelectedText}}) |
| 3 | Swarm-Mind Engineering | 6 | swarm-mind personas |
| 4 | Viral & Elegant Web/Agent | 12 | 187web-manifest + 187WEBDEV suite |
Canonical XML: references/MANIFEST.xml
Build plan: references/BUILD-PLAN.md
Phase roadmap: references/PHASE-ROADMAP.md (187webdev-templates mapped)
Compiler usage
Bash (FydeOS / Linux / Git Bash)
mkdir -p ~/.187web/prompts
cp references/MANIFEST.xml ~/.187web/prompts/
./scripts/187web-compiler.sh --list
./scripts/187web-compiler.sh
./scripts/187web-compiler.sh --prompt a11y-linting-agent
E187WEB_POWER_MODE=low ./scripts/187web-compiler.sh
PowerShell (Windows)
.\scripts\187web-compiler.ps1 -List
.\scripts\187web-compiler.ps1 -Prompt ui-aesthetic-auditor
.\scripts\187web-compiler.ps1 -Write -Emit # persist + push to OmniQube relay
$env:E187WEB_POWER_MODE = 'low'; .\scripts\187web-compiler.ps1
# Full session init (PLAN.md + relay + compile)
.\scripts\session-init.ps1
Phase I stack (complete)
# 1. Install compiler hook (once)
.\scripts\install-compiler-hook.ps1
# 2. Start telemetry relay
node .\scripts\telemetry-relay.mjs
# 3. Open OmniQube Render Matrix
# http://localhost:3000/omniqube.html (with next dev)
Compiler output (inject into agent context)
{
"ecosystem": "187WEB",
"power_mode": "high",
"prompt_id": "ui-aesthetic-auditor",
"skill": "187webdesign",
"persona": "ui-spinner",
"directive": "...",
"neuro_toxin": { "toxicity": 0.3, "lethality": "medium" }
}
Prompt quick-reference
Layer 1 — Native OS
Layer 2 — Corporate Office
Layer 3 — Swarm-Mind
Layer 4 — Viral & Elegant
Agent workflow (long-run session)
- Read
PLAN.md — current phase and blockers (Phase IV).
- Run compiler —
./scripts/187web-compiler.sh or .ps1.
- Apply neuro-toxin — use compiled
neuro_toxin block.
- Load routed skill —
widow-weaver, swarm-mind, or 187WEBDEV child.
- Execute directive — verbatim from compiled JSON; substitute
{{vars}}.
- Hand off —
agent-charlotte (research) or silk-sandbox (execution).
- Log — append outcome to
PLAN.md Session Log.
Power-mode routing
| Mode | Detected when | Default persona | Default prompt |
|---|
high | GPU + AC power or ≥8 cores | ui-spinner | generative-drafting |
low | Battery / NPU-only / <4 cores | edge-venom | edge-ai-deployment-specialist |
standard | Everything else | alpha-architect | ml-systems-architect |
Override: E187WEB_POWER_MODE=high|low|standard
Integration map
MANIFEST.xml
↓ 187web-compiler
├→ neuro-toxin (inference profile)
├→ widow-weaver (Layer 1–2)
├→ swarm-mind (Layer 3)
├→ 187WEBDEV suite (Layer 4 UI prompts)
├→ agent-charlotte (web crawler, vault relay)
└→ silk-sandbox (safety sentinel)
↓
OmniQube Render Matrix (WebSocket telemetry)
.zshrc hook (Phase I)
_187web_compiler_hook() {
command -v 187web-compiler.sh >/dev/null 2>&1 || return 0
187web-compiler.sh --quiet --write --emit >/dev/null 2>&1 &
}
Manifest is the source of truth. Child skills execute; compiler routes.