Slash Command Manager

Slash Command Manager

Generates and manages slash commands for AI coding assistants like Claude Code and Cursor, supporting both interactive CLI and programmatic MCP access.

Category
访问服务器

README

Slash Command Manager

A standalone CLI tool and MCP server for generating and managing slash commands as part of the Spec-Driven Development (SDD) workflow.

Overview

Slash Command Manager provides both a command-line interface (slash-man) for generating slash command definitions and an MCP server for programmatic access. This repository was extracted from the SDD Workflow repository to enable independent versioning and release cycles.

Features

  • CLI Generator: Interactive command-line tool for creating slash command configurations
  • MCP Server: Programmatic API for generating slash commands via Model Context Protocol
  • Code Detection: Automatic detection of code patterns and generation of appropriate command structures
  • Flexible Configuration: Support for various configuration formats and customization options

Installation

Using uvx (Recommended)

Install and run directly from the repository:

# Generate slash commands for detected AI assistants
uvx --from git+https://github.com/liatrio-labs/slash-command-manager slash-man generate --yes

# View available commands
uvx --from git+https://github.com/liatrio-labs/slash-command-manager slash-man --help

Once published to PyPI, you'll be able to use:

uvx slash-man generate --yes

From Source

git clone https://github.com/liatrio-labs/slash-command-manager.git
cd slash-command-manager
uv pip install -e .

Version Management

Slash Command Manager includes comprehensive version management with git commit SHA tracking:

Version Format

The version follows the format VERSION+COMMIT_SHA:

  • Development: 1.0.0+8b4e417 (includes current git commit)
  • Production: 1.0.0+def456 (includes release commit at build time)
  • Fallback: 1.0.0 (when git commit unavailable)

Version Detection Priority

  1. Build-time injection (for installed packages) - matches the release commit
  2. Runtime git detection (for local development) - current git commit
  3. Fallback - version only when git unavailable

Viewing Version

# Show version with git commit SHA
slash-man --version
slash-man -v

# Example output:
# slash-man 1.0.0+8b4e417

This ensures traceability between installed versions and their corresponding git commits, useful for debugging and deployment tracking.

Quick Start

CLI Usage

# Generate slash commands for all detected AI assistants
slash-man generate

# Generate for specific agents (interactive selection)
slash-man generate --agents claude-code,cursor

# Generate with dry-run to preview changes
slash-man generate --dry-run

# View help
slash-man --help

# Clean up generated files
slash-man cleanup

GitHub Repository Support

You can download prompts directly from public GitHub repositories using explicit flags:

# Download prompts from a GitHub repository directory
uv run slash-man generate \
  --github-repo liatrio-labs/spec-driven-workflow \
  --github-branch main \
  --github-path prompts \
  --agent claude-code \
  --target-path /tmp/test-output

# Download from a branch with slashes in the name
uv run slash-man generate \
  --github-repo liatrio-labs/spec-driven-workflow \
  --github-branch refactor/improve-workflow \
  --github-path prompts \
  --agent claude-code \
  --target-path /tmp/test-output

# Download a single prompt file from GitHub
uv run slash-man generate \
  --github-repo liatrio-labs/spec-driven-workflow \
  --github-branch refactor/improve-workflow \
  --github-path prompts/generate-spec.md \
  --agent claude-code \
  --target-path /tmp/test-output

# Download from a nested path
uv run slash-man generate \
  --github-repo owner/repo \
  --github-branch main \
  --github-path docs/prompts/commands \
  --agent claude-code \
  --target-path /tmp/test-output

Important Notes:

  • All three GitHub flags (--github-repo, --github-branch, --github-path) must be provided together
  • GitHub flags are mutually exclusive with --prompts-dir (cannot use both)
  • Repository must be in format owner/repo (e.g., liatrio-labs/spec-driven-workflow)
  • Only public repositories are supported
  • Only .md files are downloaded and processed
  • The --github-path can point to either a directory or a single .md file

Error Handling:

# Invalid repository format
uv run slash-man generate --github-repo invalid-format --target-path /tmp/test-output
# Error: Repository must be in format owner/repo, got: 'invalid-format'. Example: liatrio-labs/spec-driven-workflow

# Missing required flags
uv run slash-man generate --github-repo owner/repo --target-path /tmp/test-output
# Error: All GitHub flags must be provided together. Missing: --github-branch, --github-path

# Mutual exclusivity error
uv run slash-man generate \
  --prompts-dir ./prompts \
  --github-repo owner/repo \
  --github-branch main \
  --github-path prompts \
  --target-path /tmp/test-output
# Error: Cannot specify both --prompts-dir and GitHub repository flags simultaneously

MCP Server Usage

Run the MCP server for programmatic access:

# STDIO transport (for MCP clients)
slash-man mcp

# HTTP transport
slash-man mcp --transport http --port 8000

# With custom configuration
slash-man mcp --config custom.toml --transport http --port 8080

# Or via uvx (once published)
uvx --from git+https://github.com/liatrio-labs/slash-command-manager slash-man mcp

Supported AI Tools

The generator supports the following AI coding assistants:

  • Claude Code: Commands installed to ~/.claude/commands
  • Cursor: Commands installed to ~/.cursor/commands
  • Windsurf: Commands installed to ~/.codeium/windsurf/global_workflows
  • Codex CLI: Commands installed to ~/.codex/prompts
  • Gemini CLI: Commands installed to ~/.gemini/commands
  • VS Code: Commands installed to platform-specific directories:
    • Linux: ~/.config/Code/User/prompts
    • macOS: ~/Library/Application Support/Code/User/prompts
    • Windows: %APPDATA%\Code\User\prompts
  • VS Code Insiders: Commands installed to platform-specific directories:
    • Linux: ~/.config/Code - Insiders/User/prompts
    • macOS: ~/Library/Application Support/Code - Insiders/User/prompts
    • Windows: %APPDATA%\Code - Insiders\User\prompts
  • OpenCode CLI: Commands installed to ~/.config/opencode/command
  • Amazon Q: Commands installed to ~/.aws/amazonq/prompts (Windows & macOS/Linux)
  • Kiro CLI: Prompts installed to ~/.kiro/prompts
    • Invoke with @prompt-name (e.g., @generate-spec)
    • Note: Kiro CLI prompts do not support tool permissions. Run /tools trust-all at the start of your session to auto-approve file operations (write, shell, etc.).
  • Kiro IDE: Steering files installed to ~/.kiro/steering
    • Invoke with /prompt-name slash command (e.g., /generate-spec)
    • Files have inclusion: manual frontmatter for manual inclusion

Documentation

Related Projects

  • SDD Workflow - Spec-Driven Development prompts and workflow documentation

Development

Testing in Clean Environment (Docker)

For testing the installation in a completely clean environment without any local dependencies, use these docker commands:

Option 1: One-line Testing

# Build and test in an ephemeral Docker container
docker run --rm -v $(pwd):/app -w /app python:3.12-slim bash -c "
    pip install uv && \
    uv sync && \
    uv run slash-man generate --list-agents && \
    echo '✅ Installation test passed - CLI is functional'
"

This command:

  • Uses a fresh Python 3.12 slim container
  • Installs uv package manager
  • Syncs dependencies from scratch
  • Tests the CLI functionality
  • Automatically cleans up the container when done

For a more comprehensive test including package building:

# Full test: build package and test CLI in clean environment
docker run --rm -v $(pwd):/app -w /app python:3.12-slim bash -c "
    pip install uv build && \
    uv sync && \
    python -m build && \
    pip install dist/*.whl && \
    slash-man generate --list-agents && \
    slash-man generate --agent claude-code && \
    ls -lh ~/.claude/commands/ | grep .md && \
    echo '✅ Full installation and functionality test passed'
"

Option 2: Interactive Docker Container

Build the Docker image and run it interactively:

# Build the Docker image
docker build -t slash-command-manager .

# Run interactively with shell access
docker run -it --rm slash-command-manager bash

# Or run directly with the CLI
docker run -it --rm slash-command-manager slash-man generate --list-agents

Running Tests

# Run all tests
uv run pytest

# Run tests with coverage
uv run pytest --cov=mcp_server --cov=slash_commands --cov-report=term-missing

# Run pre-commit hooks
uv run pre-commit run --all-files

Building Package

# Build wheel and source distribution
uv run python -m build

# Install built package locally
pip install dist/*.whl

SDD Workflow Integration

This package was extracted from the SDD Workflow repository to enable independent versioning and release cycles.

About SDD Workflow

The Spec-Driven Development (SDD) Workflow provides a structured approach to AI-assisted software development using three core prompts:

  1. generate-spec: Creates detailed specifications from feature ideas
  2. generate-task-list-from-spec: Transforms specs into actionable task lists
  3. manage-tasks: Coordinates execution and tracks progress

Slash Command Manager generates the slash commands that enable these prompts in your AI coding assistant. The workflow prompts themselves are maintained in the SDD Workflow repository.

Usage with SDD Workflow

  1. Install Slash Command Manager (this package) to generate slash commands
  2. Reference SDD Workflow prompts from the SDD Workflow repository when using the generated commands

For complete documentation on the SDD workflow, see the SDD Workflow repository.

License

Apache License 2.0 - see LICENSE file for details

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选