skills/prompt-converter/SKILL.md
Convert between Claude Code command markdown files (*.md) and GitHub Copilot prompt files (*.prompt.md). Use when porting custom prompts or CLI commands between ecosystems.
npx skillsauth add arisng/github-copilot-fc prompt-converterInstall 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.
This skill automates the bidirectional conversion between Claude Code .md command files and Copilot .prompt.md files, ensuring metadata and instructions are correctly mapped.
Before executing any operations, the skill defines the skills_source path:
import os
skills_source = os.path.expanduser('~/.copilot/skills') if os.name == 'nt' else os.path.expanduser('~/.copilot/skills')
.md or Copilot .prompt.md) to extract metadata (name, description, agent, tools) and instruction content.name, description, and agent (default: 'agent') are present.\$ARGUMENTS in Copilot).python {skills_source}/prompt-converter/scripts/convert_prompt.py --src "my-command.md" --to copilot
prompts/ for Copilot).${input:...} for Copilot parameters and $ARGUMENTS for CLI inputs where appropriate.python scripts/convert_prompt.py --src path/to/claude.md --to copilot -o ./prompts
python scripts/convert_prompt.py --src path/to/copilot.prompt.md --to claude -o ./claude-commands
convert_prompt.py: Core logic for conversion.copilot.prompt.md.template: Boilerplate for Copilot prompts.claude.md.template: Boilerplate for Claude commands.devops
Programmatically create tldraw whiteboards and visualize them with a self-hosted tldraw instance. Create boards with shapes, text, and connectors, then deploy to a self-hosted server for collaborative editing and gallery management.
tools
Execute Google Cloud Platform operations using the gcloud CLI (and gsutil/bq where applicable). Use when the user wants to: authenticate with GCP, manage GCP resources, deploy applications, configure projects or IAM, view logs, run SQL/BigQuery, or interact with any GCP service from the command line. Triggers on phrases like "gcloud", "Google Cloud CLI", "deploy to GCP", "create a VM", "Cloud Run", "GKE cluster", "Cloud Storage bucket", "set GCP project", "service account", "Cloud Functions", "App Engine deploy", or any request to manage Google Cloud resources via command line.
testing
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
development
Session-scoped git commit orchestrator that commits only current-session changes and leaves unrelated dirty worktree edits untouched. Inherits git-atomic-commit for atomic grouping and commit message execution, and git-commit-scope-constitution for scope governance and validation. Use when asked to commit this session only or isolate commits from mixed worktree state.