.agent/skills/dev-toolkit/SKILL.md
Common development commands for creating, testing, and building the project.
npx skillsauth add rbbtsn0w/awesome-copilot-mcp dev-toolkitInstall 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 provides a set of standard commands for working with the Awesome Copilot MCP Server.
Compiles the TypeScript source code to the dist/ directory.
npm run build
Runs the test suite using Vitest.
# Run all tests
npm test
# Run tests with coverage
npm run test:coverage
# Watch mode
npm run test:watch
Checks the code for style and potential errors.
# Check linting
npm run lint
# Fix linting issues where possible
npm run lint:fix
Starts the MCP server in stdio mode (for testing with Inspector or local clients).
# Start server
npm start
# Debug with MCP Inspector
npm run inspect:stdio
Commands for managing the awesome-copilot metadata.
# Generate full metadata
npm run generate-metadata
# Generate LEAN metadata (recommended for basic dev)
npm run generate-metadata:lean
# Verify metadata integrity
npm run generate-metadata:verify
# Check metadata size
npm run check:metadata-size
Commands for running the server in HTTP mode and inspecting it.
# Start HTTP server
npm run start-http
# Start HTTP server (debug mode with port 8080)
npm run start-http:debug
# Inspect using MCP Inspector (Stdio) - Recommended for CLI
npm run inspect:stdio
# Inspect using MCP Inspector (HTTP)
npm run inspect:http
Helper commands for debugging and maintenance.
# Debug CLI directly
npm run debug:cli
# Archive large reports
npm run archive:reports
# Clean build artifacts
npm run clean
testing
Test skill for validation
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------