create-prompt

Featured

Create prompts for sidecar workspaces. Covers prompt structure (name, ticketMode, body), template variables (ticket with fallbacks), config file locations (global vs project), and scope overrides. Use when creating or modifying prompts in sidecar config files.

AI & Automation 1,041 stars 80 forks Updated today MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Creating Prompts Prompts are reusable templates that configure the initial context for agents when creating workspaces. They help standardize common workflows like code reviews, bug fixes, or feature implementation. ## Config File Locations | Scope | Path | Override Priority | |---------|---------------------------------------|-------------------| | Global | `~/.config/sidecar/config.json` | Lower | | Project | `.sidecar/config.json` (in project) | Higher | Project prompts override global prompts with the same name (case-sensitive match). ## Config Format ```json { "prompts": [ { "name": "Code Review", "ticketMode": "optional", "body": "Do a detailed code review of {{ticket || 'open reviews'}}.\nFocus on correctness, edge cases, and test coverage." } ] } ``` ## Prompt Fields ### name (required) Display name shown in the prompt picker. Keep it concise. ### ticketMode (optional) Controls how the ticket/task field behaves: | Mode | Behavior | |------------|-----------------------------------------------| | `optional` | Task field shown, can be empty (default) | | `required` | Task must be selected before creating | | `none` | Task field is hidden, prompt stands alone | ### body (required) The prompt text sent to the agent. Supports template variables. Use `\n` for newlines. ## Template Variables ### `{{tic...

Details

Author
marcus
Repository
marcus/sidecar
Created
7 months ago
Last Updated
today
Language
Go
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category