docs/sgai-skills/adhoc/SKILL.md
Run and manage ad-hoc AI prompts in sgai workspaces without starting a full agentic session. Use when you need to run a one-off AI prompt against a workspace, check the status of a running ad-hoc prompt, or stop a running ad-hoc prompt.
npx skillsauth add sandgardenhq/sgai adhocInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Ad-hoc prompts let you run a single AI prompt against a workspace without starting a full agentic session. Useful for quick tasks, code reviews, or one-off questions.
Endpoint: POST /api/v1/workspaces/{name}/adhoc
curl -X POST $BASE_URL/api/v1/workspaces/my-project/adhoc \
-H "Content-Type: application/json" \
-d '{
"prompt": "Review the authentication code and identify any security issues",
"model": "openai/gpt-5.5 (low)"
}'
Request:
{
"prompt": "Review the authentication code and identify any security issues",
"model": "openai/gpt-5.5 (low)"
}
Response:
{
"running": true,
"output": "",
"message": "ad-hoc prompt started"
}
If already running:
{
"running": true,
"output": "$ opencode run -m openai/gpt-5.5 --agent build --title adhoc [openai/gpt-5.5 (low)] --variant low...\nprompt: Review the...",
"message": "ad-hoc prompt already running"
}
The model parameter accepts the same format as GOAL.md models:
"openai/gpt-5.5 (low)" — cost-conscious GPT-5.5 baseline"openai/gpt-5.5 (xhigh)" — high-reasoning GPT-5.5 variantGET /api/v1/models to list available modelsAd-hoc prompts parse provider/model (variant) into opencode run -m provider/model --agent build --title "adhoc [provider/model (variant)]" --variant variant with your prompt piped as stdin. Without a parenthesized variant, SGAI omits --variant. The workspace directory is used as the working directory.
Check if an ad-hoc prompt is running and get its current output.
Endpoint: GET /api/v1/workspaces/{name}/adhoc
curl -s $BASE_URL/api/v1/workspaces/my-project/adhoc
Response (running):
{
"running": true,
"output": "$ opencode run -m openai/gpt-5.5 --agent build --title adhoc [openai/gpt-5.5 (low)] --variant low\nprompt: Review the authentication code...\n\nAnalyzing the codebase...\n\nFound 3 potential issues:\n1. JWT tokens lack expiration...",
"message": "adhoc status"
}
Response (not running):
{
"running": false,
"output": "$ opencode run...\n...\n[completed successfully]",
"message": "adhoc status"
}
WORKSPACE="my-project"
# Start the prompt
curl -X POST $BASE_URL/api/v1/workspaces/$WORKSPACE/adhoc \
-H "Content-Type: application/json" \
-d '{"prompt": "Summarize the GOAL.md", "model": "openai/gpt-5.5 (low)"}'
# Poll until done
while true; do
STATUS=$(curl -s $BASE_URL/api/v1/workspaces/$WORKSPACE/adhoc)
RUNNING=$(echo $STATUS | jq '.running')
if [ "$RUNNING" = "false" ]; then
echo "Ad-hoc complete!"
echo $STATUS | jq -r '.output'
break
fi
echo "Still running..."
sleep 3
done
Stop a running ad-hoc prompt.
Endpoint: DELETE /api/v1/workspaces/{name}/adhoc
curl -X DELETE $BASE_URL/api/v1/workspaces/my-project/adhoc
Response:
{
"running": false,
"output": "$ opencode run...\n...\n[process terminated]",
"message": "ad-hoc stopped"
}
| Feature | Ad-hoc | Full Session | |---------|--------|--------------| | Single prompt | ✓ | ✗ (multi-agent flow) | | Multi-agent workflow | ✗ | ✓ | | Human interaction | ✗ | ✓ | | Progress tracking | Basic | Full (todos, events) | | Cost tracking | ✗ | ✓ | | Concurrent with session | No | N/A | | GOAL.md required | ✗ | ✓ |
# Code review
curl -X POST $BASE_URL/api/v1/workspaces/my-project/adhoc \
-d '{"prompt": "Review all Go files for potential race conditions", "model": "openai/gpt-5.5 (low)"}'
# Documentation generation
curl -X POST $BASE_URL/api/v1/workspaces/my-project/adhoc \
-d '{"prompt": "Generate a README.md for this project", "model": "openai/gpt-5.5 (low)"}'
# Quick fix
curl -X POST $BASE_URL/api/v1/workspaces/my-project/adhoc \
-d '{"prompt": "Fix the failing test in auth_test.go", "model": "openai/gpt-5.5 (low)"}'
# Analysis
curl -X POST $BASE_URL/api/v1/workspaces/my-project/adhoc \
-d '{"prompt": "List all TODO comments in the codebase", "model": "openai/gpt-5.5 (low)"}'
documentation
Start, stop, and steer agentic sessions in sgai workspaces. Use when you need to launch AI agent sessions, halt running sessions, or inject steering instructions to guide the agent mid-execution without stopping it.
development
Monitor sgai workspace status, events, progress, diffs, and workflow diagrams. Use when you need to observe what agents are doing, track progress, get the current state of all workspaces, subscribe to real-time updates via SSE, or inspect code changes.
development
Access agents, skills, and code snippets available in sgai workspaces. Use when you need to discover what agents are defined in a workspace, browse available skills, get skill instructions, find code snippets by language, or retrieve snippet content for a specific task.
data-ai
Handle agent questions and work gates in sgai workspaces. Use when an agent is blocked waiting for human input, when you need to respond to multi-choice questions, approve work gates, or provide free-text answers to agent queries.