Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问clear审计提醒

sindri-extension-guide辛德里扩展指南

Agent Skill

sindri-extension-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

906

周安装

37

GitHub Stars

12

下载量

290
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sindri-extension-guide(辛德里扩展指南)
来源仓库:https://github.com/pacphi/sindri
仓库路径:skills/sindri-extension-guide
安装命令:
npx skills add https://github.com/pacphi/sindri --skill sindri-extension-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pacphi/sindri --skill sindri-extension-guide

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理。
  • 可结合来源仓库和 README 核验具体用法,支持代码变更追踪。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 注意避免直接操作生产环境,优先使用脱敏数据和最小权限原则。

SKILL.md

Sindri Extension Development Guide

What's New: Extension Capabilities System

Recent Addition (Jan 2026): Sindri now supports an optional capabilities system for advanced extensions:

  • Project Initialization - Commands to set up new projects (project-init)
  • Multi-Method Authentication - Support both API key and CLI auth (auth)
  • Lifecycle Hooks - Pre/post install and project-init hooks (hooks)
  • MCP Integration - Register as Model Context Protocol servers (mcp)

Most extensions don't need capabilities - they're only for extensions that extend project management functionality (like Claude Flow, Agentic QE, Spec-Kit). Regular extensions (nodejs, python, docker) work exactly as before.

Slash Commands (Recommended)

For reliable extension creation with all documentation updates, use these commands:

CommandPurpose
/extension/new <name> [source]Create new extension with complete documentation workflow
/extension/update-docs <name>Update documentation for existing extension

Example:

/extension/new mdflow https://github.com/johnlindquist/mdflow
/extension/update-docs nodejs

These commands enforce the complete workflow including all required documentation updates.


Overview

This skill guides you through creating declarative YAML extensions for Sindri. Extensions are YAML files, not bash scripts - all configuration is driven by declarative YAML definitions.

Documentation Locations

IMPORTANT: After creating any extension, you must update the relevant documentation.

Key Documentation Files

TypePathPurpose
Schemav2/docker/lib/schemas/extension.schema.jsonExtension validation schema
Registryv2/docker/lib/registry.yamlMaster extension registry
Profilesv2/docker/lib/profiles.yamlExtension profile definitions
Categoriesv2/docker/lib/categories.yamlCategory definitions
Extension Docsdocs/extensions/{NAME}.mdIndividual extension documentation
Catalogv2/docs/EXTENSIONS.mdOverview of all extensions
Authoring Guidev2/docs/EXTENSION_AUTHORING.mdDetailed authoring reference
Slidesdocs/slides/extensions.htmlVisual presentation

Quick Start Checklist

  1. Create directory: v2/docker/lib/extensions/{name}/
  2. Create extension.yaml with required sections
  3. Add to v2/docker/lib/registry.yaml
  4. Validate: ./v2/cli/extension-manager validate {name}
  5. Test: ./v2/cli/extension-manager install {name}
  6. Update documentation (see Post-Extension Checklist below)

Extension Directory Structure

v2/docker/lib/extensions/{extension-name}/
├── extension.yaml       # Required: Main definition
├── scripts/             # Optional: Custom scripts
│   ├── install.sh       # Custom installation
│   ├── uninstall.sh     # Custom removal
│   └── validate.sh      # Custom validation
├── templates/           # Optional: Config templates
│   └── config.template
└── mise.toml            # Optional: mise configuration

Minimal Extension Template

metadata:
  name: my-extension
  version: 1.0.0
  description: Brief description (10-200 chars)
  category: dev-tools
  dependencies: []

install:
  method: mise
  mise:
    configFile: mise.toml

validate:
  commands:
    - name: mytool
      versionFlag: --version
      expectedPattern: "v\\d+\\.\\d+\\.\\d+"

Extension YAML Sections

Extensions consist of required sections (metadata, install, validate) and optional sections (requirements, configure, remove, upgrade, bom, capabilities).

IMPORTANT: Capabilities are OPTIONAL - Most extensions (nodejs, python, docker, etc.) don't need capabilities. Only extensions requiring project initialization, authentication, lifecycle hooks, or MCP integration need the capabilities section.

1. Metadata (Required)

metadata:
  name: extension-name # lowercase with hyphens
  version: 1.0.0 # semantic versioning
  description: What it does # 10-200 characters
  category: dev-tools # see categories below
  author: Your Name # optional
  homepage: https://... # optional
  dependencies: # other extensions needed
    - nodejs
    - python

Valid Categories:

  • base - Core system components
  • language - Programming runtimes (Node.js, Python, etc.)
  • dev-tools - Development tools (linters, formatters)
  • infrastructure - Cloud/container tools (Docker, K8s, Terraform)
  • ai - AI/ML tools and frameworks
  • agile - Project management tools (Jira, Linear)
  • database - Database servers
  • monitoring - Observability tools
  • mobile - Mobile SDKs
  • desktop - GUI environments
  • utilities - General tools

2. Requirements (Optional)

requirements:
  domains: # Network access needed
    - api.github.com
    - registry.npmjs.org
  diskSpace: 500 # MB required
  secrets: # Credentials needed
    - GITHUB_TOKEN

3. Install (Required)

Choose ONE installation method:

mise (recommended for language tools):

install:
  method: mise
  mise:
    configFile: mise.toml # Reference to mise config
    reshim: true # Rebuild shims after install

apt (system packages):

install:
  method: apt
  apt:
    repositories:
      - name: docker
        key: https://download.docker.com/linux/ubuntu/gpg
        url: https://download.docker.com/linux/ubuntu
        suite: jammy
        component: stable
    packages:
      - docker-ce
      - docker-ce-cli

binary (direct download):

install:
  method: binary
  binary:
    url: https://github.com/org/repo/releases/download/v1.0.0/tool-linux-amd64.tar.gz
    extract: tar.gz # tar.gz, zip, or none
    destination: ~/.local/bin/tool

npm (Node.js packages):

install:
  method: npm
  npm:
    packages:
      - typescript
      - eslint
    global: true

script (custom installation):

install:
  method: script
  script:
    path: scripts/install.sh
    timeout: 300 # seconds (default: 300)

hybrid (multiple methods):

install:
  method: hybrid
  hybrid:
    steps:
      - method: apt
        apt:
          packages: [build-essential]
      - method: script
        script:
          path: scripts/install.sh

4. Configure (Optional)

configure:
  templates:
    - source: templates/config.template
      destination: ~/.config/tool/config.yaml
      mode: overwrite # overwrite|append|merge|skip-if-exists
  environment:
    - key: TOOL_HOME
      value: $HOME/.tool
      scope: bashrc # bashrc|profile|session

5. Validate (Required)

validate:
  commands:
    - name: tool-name
      versionFlag: --version
      expectedPattern: "\\d+\\.\\d+\\.\\d+"
  mise:
    tools:
      - node
      - python
    minToolCount: 2
  script:
    path: scripts/validate.sh
    timeout: 60

6. Remove (Optional)

remove:
  confirmation: true
  mise:
    removeConfig: true
    tools: [node, python]
  apt:
    packages: [package-name]
    purge: false
  script:
    path: scripts/uninstall.sh
  paths:
    - ~/.config/tool
    - ~/.local/share/tool

7. Upgrade (Optional)

upgrade:
  strategy: automatic # automatic|manual|none
  mise:
    upgradeAll: true
  apt:
    packages: [package-name]
    updateFirst: true
  script:
    path: scripts/upgrade.sh

8. Bill of Materials (Optional but Recommended)

bom:
  tools:
    - name: node
      version: dynamic # or specific version
      source: mise
      type: runtime
      license: MIT
      homepage: https://nodejs.org

9. Capabilities (Optional - Advanced Extensions Only)

Use capabilities when your extension needs:

  • Project initialization - Commands to set up a new project (e.g., claude-flow init, spec-kit init)
  • Authentication - Validate API keys or CLI authentication before running
  • Lifecycle hooks - Pre/post install or project-init commands
  • MCP integration - Register as a Model Context Protocol server for Claude Code

Most extensions don't need capabilities. Only use this for extensions that extend project management functionality.

capabilities:
  # Project initialization (optional)
  project-init:
    enabled: true
    commands:
      - command: "mytool init --force"
        description: "Initialize mytool project"
        requiresAuth: anthropic # or: openai, github, none
        conditional: false # true = only run if condition met

    state-markers:
      - path: ".mytool"
        type: directory
        description: "Mytool configuration directory"
      - path: ".mytool/config.json"
        type: file
        description: "Mytool config file"

    validation:
      command: "mytool --version"
      expectedPattern: "^\\d+\\.\\d+\\.\\d+"
      expectedExitCode: 0

  # Authentication (optional)
  auth:
    provider: anthropic # or: openai, github, custom
    required: false # true = block installation without auth
    methods:
      - api-key # API key in environment variable
      - cli-auth # CLI authentication (e.g., Max/Pro plan)
    envVars:
      - ANTHROPIC_API_KEY
    validator:
      command: "claude --version"
      expectedExitCode: 0
    features:
      - name: agent-spawn
        requiresApiKey: false
        description: "CLI-based features"
      - name: api-integration
        requiresApiKey: true
        description: "Direct API features"

  # Lifecycle hooks (optional)
  hooks:
    pre-install:
      command: "echo 'Preparing installation...'"
      description: "Pre-installation checks"
    post-install:
      command: "mytool --version"
      description: "Verify installation"
    pre-project-init:
      command: "mytool doctor --check"
      description: "Pre-init health check"
    post-project-init:
      command: "echo 'Project initialized'"
      description: "Post-init notification"

  # MCP server registration (optional)
  mcp:
    enabled: true
    server:
      command: "npx"
      args:
        - "-y"
        - "@mytool/mcp-server"
        - "start"
      env:
        MYTOOL_MCP_MODE: "1"
    tools:
      - name: "mytool-action"
        description: "Perform mytool action"
      - name: "mytool-query"
        description: "Query mytool data"

  # Feature configuration (optional, V3+ extensions)
  features:
    core:
      daemon_autostart: true
      unified_config: true
    advanced:
      plugin_system: true
      security_scanning: false

Capability Guidelines:

  1. Keep it simple - Only add capabilities you actually need
  2. State markers - Define files/directories created by project-init for idempotency
  3. Conditional commands - Use conditional: true for optional setup steps
  4. Multi-method auth - Support both API key and CLI auth when possible
  5. Feature-level auth - Some features may work without API key (use features array)

Adding to Registry

After creating your extension, add it to v2/docker/lib/registry.yaml:

extensions:
  my-extension:
    category: dev-tools
    description: Short description
    dependencies: [nodejs]
    protected: false

Validation Commands

# Validate single extension
./v2/cli/extension-manager validate my-extension

# Validate all extensions
./v2/cli/extension-manager validate-all

# Check extension info
./v2/cli/extension-manager info my-extension

# Test installation
./v2/cli/extension-manager install my-extension

# Check status
./v2/cli/extension-manager status my-extension

Common Patterns

Language Runtime (mise-based)

Best for: Node.js, Python, Go, Rust, Ruby

  • Use method: mise with a mise.toml config file
  • Set appropriate environment variables in configure section
  • Validate with version command
  • No capabilities needed - just install tools

Development Tool (npm-based)

Best for: TypeScript, ESLint, Prettier

  • Depend on nodejs extension
  • Use method: npm with global packages
  • Add configuration templates

CLI Tool (binary download)

Best for: GitHub releases, standalone binaries

  • Use method: binary with GitHub release URL
  • Handle extraction (tar.gz, zip)
  • Validate binary exists and runs

Complex Setup (hybrid)

Best for: Desktop environments, multi-step installs

  • Use method: hybrid with ordered steps
  • Combine apt + script for flexibility
  • Include cleanup in remove section
  • No capabilities needed unless it requires project initialization

AI/Project Management Tool (with capabilities)

Best for: Claude Flow, Agentic QE, Spec-Kit

  • Use appropriate install method (mise, script, npm)
  • Add capabilities section for project initialization
  • Define state markers for idempotency (.claude/, .agentic-qe/, .github/spec.json)
  • Include authentication configuration (anthropic, openai, github, or none)
  • Add lifecycle hooks for post-install/post-init actions
  • Register MCP server if extension provides Claude Code tools
  • Example extensions: claude-flow-v3, spec-kit, agentic-qe

Current Extensions Using Capabilities:

Extensionproject-initauthhooksmcpNotes
claude-flow-v2anthropicStable, 158+ aliases
claude-flow-v3anthropicAlpha, 10x performance, 15 tools
agentic-qeanthropicAI-powered testing
spec-kitnone-GitHub spec documentation
agentic-flowanthropicMulti-agent workflows

Script Guidelines

All scripts must:

  1. Start with #!/usr/bin/env bash
  2. Include set -euo pipefail
  3. Exit 0 on success, non-zero on failure
  4. Use $HOME, $WORKSPACE environment variables
  5. Log progress with echo statements

Example:

#!/usr/bin/env bash
set -euo pipefail

echo "Installing my-tool..."
# Installation commands here
echo "my-tool installed successfully"

Troubleshooting

IssueSolution
Schema validation failsCheck YAML syntax, verify required fields
Dependencies not foundAdd missing extensions to registry.yaml
Install times outIncrease timeout in script section
Validation failsCheck expectedPattern regex escaping
Permission deniedScripts must be executable

Post-Extension Documentation Checklist

CRITICAL: After creating or modifying an extension, you MUST complete these documentation updates:

Required Updates (Always Do These)

  • Registry Entry - Add to v2/docker/lib/registry.yaml extensions: my-extension: category: dev-tools description: Short description dependencies: []
  • Extension Documentation - Create docs/extensions/{NAME}.md

- Use UPPERCASE for filename (e.g., NODEJS.md, AI-TOOLKIT.md) - Include: overview, installation, configuration, usage examples - For VisionFlow: docs/extensions/vision-flow/VF-{NAME}.md

  • Extension Catalog - Update v2/docs/EXTENSIONS.md

- Add to appropriate category table - Include link to extension doc

Conditional Updates (When Applicable)

  • Profiles - If adding extension to profiles:

- Update v2/docker/lib/profiles.yaml - Update relevant profile descriptions in v2/docs/EXTENSIONS.md

  • Categories - If adding new category:

- Update v2/docker/lib/categories.yaml - Update v2/docker/lib/schemas/extension.schema.json (category enum) - Update category docs in v2/docs/EXTENSIONS.md

  • Schema - If adding new extension fields:

- Update v2/docker/lib/schemas/extension.schema.json - Update docs/SCHEMA.md - Update REFERENCE.md in this skill

  • Slides - If extension is notable/featured:

- Update docs/slides/extensions.html

VisionFlow-Specific Updates

  • Update docs/extensions/vision-flow/README.md
  • Update docs/extensions/vision-flow/CAPABILITY-CATALOG.md
  • Update VisionFlow profile if applicable

Validation After Updates

# Validate YAML files
pnpm validate:yaml

# Lint markdown
pnpm lint:md

# Validate extension
./v2/cli/extension-manager validate {name}

Extension Documentation Template

When creating docs/extensions/{NAME}.md, use this template:

# {Extension Name}

{Brief description of what the extension provides.}

## Overview

{More detailed explanation of the extension's purpose and capabilities.}

## Installation

\`\`\`bash
extension-manager install {name}
\`\`\`

## What Gets Installed

- {Tool 1} - {purpose}
- {Tool 2} - {purpose}

## Configuration

{Any configuration options or environment variables.}

## Usage

{Usage examples.}

## Dependencies

{List any extension dependencies.}

## Requirements

- **Disk Space:** {X} MB
- **Network:** {domains accessed}
- **Secrets:** {optional secrets}

## Related Extensions

- {Related extension 1}
- {Related extension 2}

Reference Files

  • Schema: v2/docker/lib/schemas/extension.schema.json
  • Registry: v2/docker/lib/registry.yaml
  • Categories: v2/docker/lib/categories.yaml
  • Profiles: v2/docker/lib/profiles.yaml
  • Examples: v2/docker/lib/extensions/*/extension.yaml

For detailed field reference, see REFERENCE.md. For complete examples, see EXAMPLES.md.

Tip: Use Glob and Grep tools to discover current documentation files dynamically:

# Find all extension docs
ls docs/extensions/*.md

# Find VisionFlow docs
ls docs/extensions/vision-flow/*.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Gemini CLI

33.54%
按下载量换算97

Antigravity

23.72%
按下载量换算69

Codex

16.69%
按下载量换算48

Cursor

12.21%
按下载量换算35

Claude Code

8.77%
按下载量换算25

trae

3.35%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills