Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

scSC 搜索

Agent Skill

sc 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

672

周安装

28

GitHub Stars

76

下载量

224
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/htlin222/dotfiles --skill sc

简介

sc 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 可通过关键词输入和来源仓库筛选来组织和呈现搜索结果。
  • 安装命令为 npx skills add https://github.com/htlin222/dotfiles --skill sc。
  • 使用前需确认权限范围和维护状态,避免触发联网或文件读写操作。

SKILL.md

SuperClaude Unified Workflow

Comprehensive workflow system with 17 subcommands for structured development tasks.

Usage

/sc [command] [target] [options]

Commands

CommandPurposeKey Options
analyzeCode quality, security, performance analysis`--focus quality\security\performance\architecture, --depth quick\deep`
buildBuild, compile, package projects`--type dev\prod\test, --clean, --optimize`
cleanupRemove dead code, optimize structure`--type code\imports\files\all, --safe\--aggressive, --dry-run`
designSystem architecture, API design`--type system\api\component, --document`
documentCreate documentation for components`--type inline\external\api\guide, --style brief\detailed`
estimateTime/effort/complexity estimates`--format brief\detailed, --include-risks`
explainExplain code, concepts, behavior`--depth overview\detailed\deep, --audience beginner\intermediate\expert`
gitGit operations with smart commits--smart-commit, --branch-strategy
implementFeature and code implementation`--type component\api\service\feature, --with-tests, --safe`
improveQuality, performance improvements`--focus quality\performance\security, --scope file\module\project`
indexProject documentation and knowledge base`--type readme\api\structure, --format markdown\json`
loadLoad and analyze project context`--scope files\dependencies\config\all`
spawnBreak tasks into coordinated subtasks`--sequential\--parallel, --validate`
taskWorkflow management with persistence`--strategy systematic\agile\enterprise, --persist, --hierarchy`
testExecute tests, generate reports`--type unit\integration\e2e\all, --coverage, --watch`
troubleshootDiagnose and resolve issues`--type bug\build\performance\deployment, --trace, --fix`
workflowGenerate implementation workflows`--strategy systematic\agile\mvp, --output roadmap\tasks\detailed`

analyze

Analyze code quality, security, performance, and architecture.

When to use

  • Code quality or technical debt analysis
  • Security audit or vulnerability assessment
  • Performance bottleneck identification
  • Architecture review

Usage

/sc analyze [target] [--focus quality|security|performance|architecture] [--depth quick|deep]

Execution

  1. Discover and categorize files
  2. Apply analysis tools and techniques
  3. Generate findings with severity ratings
  4. Create actionable recommendations

build

Build, compile, and package projects.

When to use

  • Build or compile a project
  • Diagnose build errors
  • Production optimization

Usage

/sc build [target] [--type dev|prod|test] [--clean] [--optimize]

Execution

  1. Analyze project structure and build config
  2. Validate dependencies
  3. Execute build with error monitoring
  4. Optimize output and report results

cleanup

Clean up code, remove dead code, optimize structure.

When to use

  • Remove dead code or unused imports
  • Optimize project structure
  • Technical debt cleanup

Usage

/sc cleanup [target] [--type code|imports|files|all] [--safe|--aggressive] [--dry-run]

Execution

  1. Analyze for cleanup opportunities
  2. Identify dead code, unused imports
  3. Create cleanup plan with risk assessment
  4. Execute with safety measures
  5. Validate and report results

design

Design system architecture, APIs, and component interfaces.

When to use

  • System or component architecture
  • API design
  • Interface planning

Usage

/sc design [target] [--type system|api|component] [--document]

Execution

  1. Analyze requirements and constraints
  2. Research patterns and best practices
  3. Create architecture proposal
  4. Document design decisions

document

Create focused documentation for components or features.

When to use

  • Code documentation
  • API documentation
  • User guides

Usage

/sc document [target] [--type inline|external|api|guide] [--style brief|detailed]

Execution

  1. Analyze target component
  2. Identify documentation requirements
  3. Generate documentation
  4. Apply consistent formatting

estimate

Provide development estimates for tasks.

When to use

  • Time estimates needed
  • Effort assessment
  • Project sizing

Usage

/sc estimate [task] [--format brief|detailed] [--include-risks]

Execution

  1. Analyze task complexity
  2. Identify dependencies and risks
  3. Generate estimate with confidence levels
  4. Document assumptions

explain

Provide clear explanations of code, concepts, or behavior.

When to use

  • Code explanation needed
  • Concept clarification
  • Behavior understanding

Usage

/sc explain [target] [--depth overview|detailed|deep] [--audience beginner|intermediate|expert]

Execution

  1. Analyze target code/concept
  2. Identify key components
  3. Generate explanation at appropriate level
  4. Include examples if helpful

git

Git operations with intelligent commit messages.

When to use

  • Commit with good messages
  • Branch management
  • Merge/rebase assistance

Usage

/sc git [operation] [--smart-commit] [--branch-strategy]

Execution

  1. Analyze current Git state
  2. Execute requested operations
  3. Generate intelligent commit messages
  4. Handle conflicts and provide feedback

implement

Feature and code implementation.

When to use

  • Implement features or components
  • New functionality
  • API or service implementation

Usage

/sc implement [feature] [--type component|api|service|feature] [--with-tests] [--safe]

Execution

  1. Analyze requirements and detect context
  2. Auto-activate relevant personas
  3. Generate implementation with best practices
  4. Apply security and quality validation
  5. Provide testing recommendations

improve

Apply systematic improvements to code.

When to use

  • Refactoring code
  • Cleaning up technical debt
  • Optimizing performance

Usage

/sc improve [target] [--focus quality|performance|security] [--scope file|module|project]

Execution

  1. Analyze current state
  2. Identify improvement opportunities
  3. Prioritize changes by impact
  4. Apply improvements systematically
  5. Validate results

index

Generate project documentation and knowledge base.

When to use

  • Create docs or README
  • API documentation
  • Project structure maps

Usage

/sc index [target] [--type readme|api|structure] [--format markdown|json]

Execution

  1. Scan project structure
  2. Extract key information
  3. Generate documentation
  4. Organize knowledge base

load

Load and analyze project context.

When to use

  • Starting work on a project
  • Understanding configurations
  • Analyzing dependencies

Usage

/sc load [target] [--scope files|dependencies|config|all]

Execution

  1. Identify project structure
  2. Load configurations
  3. Analyze dependencies
  4. Build context summary

spawn

Break complex tasks into coordinated subtasks.

When to use

  • Complex multi-step tasks
  • Parallel work orchestration
  • Dependency management

Usage

/sc spawn [task] [--sequential|--parallel] [--validate]

Execution

  1. Parse request and create task breakdown
  2. Map dependencies
  3. Choose execution strategy
  4. Execute with progress monitoring
  5. Integrate and validate results

task

Execute tasks with workflow management and persistence.

When to use

  • Large project management
  • Cross-session progress tracking
  • Multi-phase operations

Usage

/sc task [action] [target] [--strategy systematic|agile|enterprise] [--persist] [--hierarchy]

Actions

  • create - Create task hierarchy
  • execute - Execute with orchestration
  • status - View task status
  • analytics - Performance dashboard
  • delegate - Multi-agent delegation

Strategies

  • systematic: Discovery → Planning → Execution → Validation → Optimization
  • agile: Sprint Planning → Iterative Execution → Adaptive Planning
  • enterprise: Stakeholder Analysis → Resource Allocation → Risk Management

test

Execute tests and generate reports.

When to use

  • Run tests
  • Check coverage
  • Set up test infrastructure

Usage

/sc test [target] [--type unit|integration|e2e|all] [--coverage] [--watch]

Execution

  1. Detect test framework
  2. Execute appropriate tests
  3. Collect coverage data
  4. Generate report with recommendations

troubleshoot

Diagnose and resolve issues.

When to use

  • Debugging errors
  • Build failures
  • Performance issues
  • Deployment problems

Usage

/sc troubleshoot [issue] [--type bug|build|performance|deployment] [--trace] [--fix]

Execution

  1. Analyze issue description
  2. Identify potential root causes
  3. Execute systematic debugging
  4. Propose and validate solutions
  5. Apply fixes and verify

workflow

Generate structured implementation workflows from PRDs.

When to use

  • Planning feature implementation
  • Creating development roadmaps
  • Breaking down complex features
  • Sprint planning

Usage

/sc workflow [prd|description] [--strategy systematic|agile|mvp] [--output roadmap|tasks|detailed]

Strategies

  • systematic: Full analysis, architecture, dependencies, testing
  • agile: Epics, sprints, MVP, iterative delivery
  • mvp: Core features, rapid prototyping, validation

Output Formats

  • roadmap: Phase-based timeline with milestones
  • tasks: Epic/Story/Task hierarchy
  • detailed: Step-by-step with estimates and criteria

Global Options

OptionEffect
--thinkEnable extended analysis (4K tokens)
--think-hardDeep analysis mode (10K tokens)
--c7Enable Context7 for framework patterns
--seqEnable Sequential thinking
--safeConservative approach with extra validation
--verboseDetailed output

Claude Code Integration

  • Glob/Grep/Read: File discovery and analysis
  • Edit/Write: Code generation and modification
  • Bash: Build and test execution
  • Task tool: Complex multi-step orchestration
  • TodoWrite: Progress tracking

Examples

/sc analyze src/ --focus security --depth deep
/sc build --type prod --clean --optimize
/sc cleanup --type imports --dry-run
/sc implement user-auth --type feature --with-tests
/sc workflow docs/prd.md --strategy agile --output tasks
/sc troubleshoot "build failing" --type build --trace

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.48%
按下载量换算88

Claude

30.13%
按下载量换算67

Cursor

18.65%
按下载量换算42

Gemini CLI

9.15%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/htlin222/dotfiles --skill sc 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills