npx claudepluginhub shakestzd/htmlgraph# /htmlgraph:spike Create a research/planning spike ## Usage ## Parameters - `title` (required): Spike title (e.g., "Research authentication options") - `--context` (optional) (default: ): Background information for the spike - `--timebox` (optional) (default: 4.0): Time limit in hours ## Examples Create a 4-hour research spike Create a 2-hour spike Spike with background context ## Instructions for Claude This command uses the SDK's `start_planning_spike()` method. ### Implementation: python from htmlgraph import SDK sdk = SDK(agent="claude") spike = sdk.start_planning_...
/spikeInvestigates a technical topic via parallel architect exploration and senior-dev prototyping, producing findings document with recommendations. User gates conclusions.
/spikePesquisa pura — investigar, avaliar opcoes, recomendar. NENHUM codigo de producao.
Create a research/planning spike
/htmlgraph:spike <title> [--context TEXT] [--timebox HOURS]
title (required): Spike title (e.g., "Research authentication options")--context (optional) (default: ): Background information for the spike--timebox (optional) (default: 4.0): Time limit in hours/htmlgraph:spike "Research OAuth providers"
Create a 4-hour research spike
/htmlgraph:spike "Investigate caching strategies" --timebox 2
Create a 2-hour spike
/htmlgraph:spike "Plan data migration" --context "Moving from SQL to NoSQL"
Spike with background context
This command uses the SDK's start_planning_spike() method.
from htmlgraph import SDK
sdk = SDK(agent="claude")
# Parse arguments
```python
from htmlgraph import SDK
sdk = SDK(agent="claude")
spike = sdk.start_planning_spike(
title=args.title,
context=args.context or "",
timebox_hours=args.timebox
)
print(format_spike_output(spike))
### Output Format:
## Spike Created
**ID:** {id}
**Title:** {title}
**Status:** {status}
**Timebox:** {timebox_hours} hours
### Steps
{steps}
Spike is now active. Complete the steps to finish planning.