Create a research/planning spike
Create time-boxed research or planning spikes with a title, optional context, and a time limit. Use this to structure investigation tasks before implementation.
/plugin marketplace add shakes-tzd/htmlgraph/plugin install htmlgraph@htmlgraphCreate 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.