用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/InugamiDev/ultrathink-oss --skill scout命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Unified design foundations — design system architecture, tokens, component specs, visual principles, creative vision, figma integration, plus brand design system loader (66 real brands via DESIGN.md). Absorbs design, design-system, design-systems, design-principles, design-router, creative-vision, figma, design-md.
Render, summarize, and present markdown documents and structured content in multiple output modes
Ultra UI skill - combines Google's DESIGN.md spec (machine-readable design tokens) with the ui-ux-pro-max knowledge base (91 styles, 161 palettes, 73 font pairings, 161 products, 104 UX guidelines, 25 chart types). Generates lint-clean DESIGN.md files, validates token references and WCAG contrast, exports Tailwind/DTCG tokens, and diffs design systems version-over-version.
基于 SOC 职业分类
| name | scout |
| description | Codebase reconnaissance and exploration -- map structure, find patterns, understand architecture |
| layer | hub |
| category | workflow |
| triggers | ["/scout","explore the codebase","what does this codebase look like","map the architecture","find where X is","how is this structured"] |
| inputs | [{"target":"What to explore -- a directory, feature, pattern, or question about the codebase"},{"depth":"How deep to go -- surface (structure only), standard (structure + key files), deep (full analysis)"}] |
| outputs | [{"architectureMap":"High-level structure and relationships between components"},{"fileIndex":"Relevant files categorized by purpose"},{"patterns":"Detected coding patterns, conventions, and architectural decisions"},{"entryPoints":"Key files to read for understanding a feature or subsystem"},{"techStack":"Detected technologies, frameworks, and tools"}] |
| linksTo | ["research","debug","code-review"] |
| linkedFrom | ["plan","cook","team","ship","refactor","optimize","debug"] |
| preferredNextSkills | ["plan","code-review","debug"] |
| fallbackSkills | ["research"] |
| riskLevel | low |
| memoryReadPolicy | selective |
| memoryWritePolicy | selective |
| sideEffects | ["Reads many files (may be slow on very large codebases)","Produces architecture map in working memory"] |
Perform systematic codebase reconnaissance to answer questions about structure, conventions, patterns, and architecture. Scout is the eyes and ears of the agent system -- it goes in first and reports back what it finds so that other skills (plan, debug, refactor, etc.) can make informed decisions.
Scout does not change code. It reads, maps, and reports.
Project structure scan
package.json, tsconfig.json, Cargo.toml, pyproject.toml, .env.example, etc.Tech stack identification
Architecture mapping
Convention detection
Produce the reconnaissance report using the template below.
Parse the question -- What specifically is the user looking for?
Search strategy
Trace the feature/pattern
Report findings with file paths, code snippets, and a summary of how the pieces connect.
# Codebase Reconnaissance: [Project Name]
## Overview
- **Type**: [monorepo | app | library | ...]
- **Primary language**: [language + version]
- **Framework**: [framework + version]
- **Architecture**: [pattern name]
## Tech Stack
| Category | Technology | Version | Notes |
|----------|-----------|---------|-------|
| Runtime | Node.js | 20.x | |
| Framework | Next.js | 14.x | App Router |
| Database | PostgreSQL | 15 | Via Prisma |
| ... | ... | ... | ... |
## Directory Structure
project/ ├── src/ # Application source │ ├── app/ # Next.js app router pages │ ├── components/# Shared UI components │ ├── lib/ # Utilities and shared logic │ └── ... ├── tests/ # Test files └── ...
## Key Entry Points
| Purpose | File | Notes |
|---------|------|-------|
| App entry | `src/app/layout.tsx` | Root layout |
| API routes | `src/app/api/` | REST endpoints |
| Database | `prisma/schema.prisma` | Data model |
## Conventions
- **File naming**: kebab-case for files, PascalCase for components
- **Imports**: Path aliases via `@/` prefix
- **Testing**: Jest + React Testing Library, tests co-located with source
- **Error handling**: [pattern description]
## Architecture Notes
[Key observations about how the system is structured]
## Notable Patterns
- [pattern 1]: [where and how it is used]
- [pattern 2]: [where and how it is used]
## Potential Concerns
- [concern 1]
- [concern 2]
/scout
/scout Where is authentication handled?
/scout How does the payment flow work?
/scout Find all API endpoints
/scout Explore src/lib/
/scout What would be affected if we change the User model?
Input: "/scout How does file upload work?"
Process:
src/app/api/upload/route.ts -- the API endpointsrc/components/FileUploader.tsx -- the UI componentsrc/lib/storage.ts -- the storage abstractiontests/upload.test.ts -- tests existOutput: Detailed map of the upload feature with file paths, data flow diagram, and notes about the S3 configuration.
Input: "/scout"
Process:
Output: Full reconnaissance report with tech stack table, directory map, conventions, and notable findings.