
Collab Claw Spike A
- Updated April 26, 2026
- sankalpgunturi/collab-claw-spike-a
collab-claw-spike-a is a Claude Code skill in the AI & Agent Building category. Spike A — verify a marketplace-installed plugin's UserPromptSubmit hook fires and receives the prompt body.
Key points
- collab-claw-spike-a
- AI & Agent Building
- AI-coding skill
Collab Claw Spike A by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add sankalpgunturi/collab-claw-spike-a/plugin install collab-claw-spike-a@collab-claw-spike-aAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | April 26, 2026 |
|---|---|
| Repository | sankalpgunturi/collab-claw-spike-a ↗ |
What it does
Spike A — verify a marketplace-installed plugin's UserPromptSubmit hook fires and receives the prompt body.
README.md
collab-claw — Spike A
A throwaway plugin used to verify a single thing: a plugin distributed via the Claude Code public marketplace can register a UserPromptSubmit hook that POSTs the user's prompt to a local HTTP endpoint and exits 0, with Claude still processing the prompt normally.
Layout matches the production marketplace shape exactly:
collab-claw-spike-a/
├── .claude-plugin/
│ └── marketplace.json ← repo-root marketplace catalog
└── plugin/
├── .claude-plugin/
│ └── plugin.json ← plugin manifest
├── hooks/
│ └── hooks.json ← single UserPromptSubmit entry
└── bin/
└── echo-prompt ← bash hook script
listener.mjs is the local HTTP server that records every hook fire — it's not part of the plugin; it lives outside plugin/ and is run separately on the host's machine.
Run the spike
# Terminal 1 — start the listener
node listener.mjs
# Terminal 2 — install the plugin in claude
claude
> /plugin marketplace add sankalpgunturi/collab-claw-spike-a
> /plugin install collab-claw-spike-a@collab-claw-spike-a
> /reload-plugins
# Then type prompts. Watch terminal 1 for hook fires.
Test cases are in SPIKE_A_RESULTS.md at the root of the parent repo.
Cleanup
claude
> /plugin uninstall collab-claw-spike-a@collab-claw-spike-a
> /plugin marketplace remove collab-claw-spike-a