Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
1101 visualization-expert shubhamsaboo/awesome-llm-apps
Visualization Expert You are an expert in data visualization and effective visual communication of data insights. When to Apply Use this skill when: Selecting appropriate chart types Designing effective visualizations Creating dashboards Improving existing charts Presenting data insights visually Chart Selection Guide Comparison : Bar charts, column charts Distribution : Histograms, box plots Relationship : Scatter plots, bubble charts Composition : Pie charts (use sparingly), stacked bars Trend...
1.3K
1102 skill-lookup f/awesome-chatgpt-prompts
Workflow Search for skills matching the user's request using search_skills Present results with title, description, author, and file list If the user picks a skill, retrieve it with get_skill to get all files Install by saving files to .claude/skills/{slug}/ and verify the SKILL.md exists Confirm installation and explain what the skill does and when it activates Example search_skills({"query": "code review", "limit": 5, "category": "coding"}) get_skill({"id": "abc123"}) Available Tools Use these...
1.2K
1103 flutter-layout flutter/skills
Goal Constructs robust, responsive Flutter user interfaces by composing layout widgets, managing constraints, and implementing adaptive design patterns. Assumes the target environment has the Flutter SDK installed and the user is familiar with Dart syntax and state management fundamentals. Instructions Determine Layout Strategy (Decision Logic) Analyze the UI requirements and select the appropriate base layout widgets using the following decision tree: Is the content strictly 1-Dimensional? Hori...
1.2K
1104 validate-implementation-plan b-mendoza/agent-skills
Validate Implementation Plan You are an independent auditor reviewing an implementation plan written by another agent. Your job is to annotate the plan — not to rewrite or modify it. When to Use Reviewing an implementation plan generated by an AI agent before approving it Auditing a design proposal for scope creep, over-engineering, or unverified assumptions Validating that a plan maps back to the original user request or ticket requirements Arguments Position Name Type Default Description $0 pl...
1.2K
1105 docker-patterns affaan-m/everything-claude-code
Docker Patterns Docker and Docker Compose best practices for containerized development. When to Activate Setting up Docker Compose for local development Designing multi-container architectures Troubleshooting container networking or volume issues Reviewing Dockerfiles for security and size Migrating from local dev to containerized workflow Docker Compose for Local Development Standard Web App Stack docker-compose.yml services : app : build : context : . target : dev Use dev stage of multi-stag...
1.2K
1106 game-development sickn33/antigravity-awesome-skills
Game Development Orchestrator skill that provides core principles and routes to specialized sub-skills. When to Use This Skill You are working on a game development project. This skill teaches the PRINCIPLES of game development and directs you to the right sub-skill based on context. Sub-Skill Routing Platform Selection If the game targets... Use Sub-Skill Web browsers (HTML5, WebGL) game-development/web-games Mobile (iOS, Android) game-development/mobile-games PC (Steam, Desktop) game-developme...
1.2K
1107 lead-research-assistant composiohq/awesome-claude-skills
Lead Research Assistant This skill helps you identify and qualify potential leads for your business by analyzing your product/service, understanding your ideal customer profile, and providing actionable outreach strategies. When to Use This Skill Finding potential customers or clients for your product/service Building a list of companies to reach out to for partnerships Identifying target accounts for sales outreach Researching companies that match your ideal customer profile Preparing for bus...
1.2K
1108 springboot-tdd affaan-m/everything-claude-code
TDD guidance for Spring Boot services with 80%+ coverage (unit + integration). When to Use - New features or endpoints - Bug fixes or refactors - Adding data access logic or security rules Workflow - Write tests first (they should fail) - Implement minimal code to pass - Refactor with tests green - Enforce coverage (JaCoCo) Unit Tests (JUnit 5 + Mockito) ``` @ExtendWith(MockitoExtension.class) class MarketServiceTest { @Mock MarketRepository repo; @InjectMocks MarketService ser...
1.2K
1109 zustand-state-management jezweb/claude-skills
Zustand State Management Last Updated: 2026-01-21 Latest Version: zustand@5.0.10 (released 2026-01-12) Dependencies: React 18-19, TypeScript 5+ Quick Start npm install zustand TypeScript Store (CRITICAL: use create<T>()() double parentheses): import { create } from 'zustand' interface BearStore { bears: number increase: (by: number) => void } const useBearStore = create<BearStore>()((set) => ({ bears: 0, increase: (by) => set((state) => ({ bears: state.bears + by })), })) Use in...
1.2K
1110 flutter-building-layouts flutter/skills
Architecting Flutter Layouts Contents Core Layout Principles Structural Widgets Adaptive and Responsive Design Workflow: Implementing a Complex Layout Examples Core Layout Principles Master the fundamental Flutter layout rule: Constraints go down. Sizes go up. Parent sets position. Pass Constraints Down: Always pass constraints (minimum/maximum width and height) from the parent Widget to its children. A Widget cannot choose its own size independently of its parent's constraints. Pass Sizes Up: C...
1.2K
1111 gog steipete/clawdis
gog Use gog for Gmail/Calendar/Drive/Contacts/Sheets/Docs. Requires OAuth setup. Setup (once) gog auth credentials /path/to/client_secret.json gog auth add you@gmail.com --services gmail,calendar,drive,contacts,docs,sheets gog auth list Common commands Gmail search: gog gmail search 'newer_than:7d' --max 10 Gmail messages search (per email, ignores threading): gog gmail messages search "in:inbox from:ryanair.com" --max 20 --account you@example.com Gmail send (plain): gog gmail send --to a@b.com ...
1.2K
1112 chrome-devtools chromedevtools/chrome-devtools-mcp
Chrome DevTools Agent Overview A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling. When to Use Use this skill when: Browser Automation : Navigating pages, clicking elements, filling forms, and handling dialogs. Visual Inspection : Taking screenshots or text snapshots of web pages. Debugging : Inspecting console messag...
1.2K
1113 paddleocr-text-recognition aidenwu0209/paddleocr-skills
PaddleOCR Text Recognition Skill When to Use This Skill Invoke this skill in the following situations: Extract text from images (screenshots, photos, scans, charts) Read text from PDFs or document images Extract text from structured documents (invoices, receipts, forms) Extract text from URLs or local files pointing to images/PDFs Do not use this skill in the following situations: Plain text files that can be read directly with the Read tool Code files or markdown documents Tasks that do not inv...
1.2K
1114 reddit resciencelab/opc-skills
Reddit Skill Get posts, comments, subreddit info, and user profiles from Reddit via the public JSON API. Prerequisites No API key required! Reddit's public JSON API works without authentication. Quick Check: cd <skill_directory> python3 scripts/get_posts.py python --limit 3 Commands All commands run from the skill directory. Subreddit Posts python3 scripts/get_posts.py python --limit 20 Hot posts (default) python3 scripts/get_posts.py python --sort new --limit 20 python3 scrip...
1.2K
1115 frontend responsive design standards am-will/codex-skills
Frontend Responsive Design Standards Rule: Mobile-first development with consistent breakpoints, fluid layouts, relative units, and touch-friendly targets. When to use this skill When creating or modifying layouts that need to work on mobile, tablet, and desktop When implementing mobile-first design patterns starting with mobile layout When writing media queries or breakpoint-specific styles When using flexible units (rem, em, %) instead of fixed pixels for scalability When implementing fluid la...
1.2K
1116 senior-backend davila7/claude-code-templates
Senior Backend Complete toolkit for senior backend with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Api Scaffolder python scripts/api_scaffolder.py [ options ] Script 2: Database Migration Tool python scripts/database_migration_tool.py [ options ] Script 3: Api Load Tester python scripts/api_load_tester.py [ options ] Core Capabilities 1. Api Scaffolder Automated tool for api scaffolder tasks. ...
1.2K
1117 react-hook-form-zod jezweb/claude-skills
React Hook Form + Zod Validation Status: Production Ready ✅ Last Verified: 2026-01-20 Latest Versions: react-hook-form@7.71.1, zod@4.3.5, @hookform/resolvers@5.2.2 Quick Start npm install react-hook-form@7.70.0 zod@4.3.5 @hookform/resolvers@5.2.2 Basic Form Pattern: const schema = z.object({ email: z.string().email(), password: z.string().min(8), }) type FormData = z.infer<typeof schema> const { register, handleSubmit, formState: { errors } } = useForm<FormData>({ resolver: zodResol...
1.2K
1118 personal-assistant ailabs-393/ai-labs-claude-skills
Personal Assistant Overview This skill transforms Claude into a comprehensive personal assistant with persistent memory of user preferences, schedules, tasks, and context. The skill maintains an intelligent database that adapts to user needs, automatically managing data retention to keep relevant information while discarding outdated content. When to Use This Skill Invoke this skill for personal assistance queries, including: Task management and to-do lists Schedule and calendar management R...
1.2K
1119 flutter-adaptive-ui madteacher/mad-agents-skills
Flutter Adaptive UI Overview Create Flutter applications that adapt gracefully to any screen size, platform, or input device. This skill provides comprehensive guidance for building responsive layouts that scale from mobile phones to large desktop displays while maintaining excellent user experience across touch, mouse, and keyboard interactions. Quick Reference Core Layout Rule: Constraints go down. Sizes go up. Parent sets position. 3-Step Adaptive Approach: Abstract - Extract common data...
1.2K
1120 sanity-best-practices sanity-io/agent-toolkit
Sanity Best Practices Comprehensive best practices guide for Sanity development, maintained by Sanity. Contains rules across 10 categories, prioritized by impact to guide schema design, query optimization, and frontend integration. When to Apply Reference these guidelines when: Writing GROQ queries or optimizing performance Designing content schemas Implementing Visual Editing and live preview Working with images, Portable Text, or page builders Configuring Sanity Studio structure Setting up...
1.2K
1121 monitoring-operations acedergren/oci-agent-skills
OCI Monitoring and Observability - Expert Knowledge 🏗️ Use OCI Landing Zone Terraform Modules Don't reinvent the wheel. Use oracle-terraform-modules/landing-zone for observability stack. Landing Zone solves: ❌ Bad Practice 10: No logging, monitoring, notifications (Landing Zone deploys complete observability) ❌ Bad Practice 7: Limited security services (Landing Zone integrates Cloud Guard, VSS, OSMS) This skill provides : Metrics, alarms, and troubleshooting for monitoring deployed WITHIN a Land...
1.2K
1122 context7 am-will/codex-skills
Context7 Overview This skill enables retrieval of current documentation for software libraries and components by querying the Context7 API via curl. Use it instead of relying on potentially outdated training data. Workflow Step 1: Search for the Library To find the Context7 library ID, query the search endpoint: curl -s "https://context7.com/api/v2/libs/search?libraryName=LIBRARY_NAME&query=TOPIC" | jq '.results[0]' Parameters: libraryName (required): The library name to search for (e.g., "react...
1.2K
1123 create-branch ruchernchong/claude-kit
Language Conventions Infer language style from the project: Analyze existing branches, commit messages, and documentation to detect the project's language variant (US English, UK English, etc.) Match the spelling conventions found in the project (e.g., "synchronize" vs "synchronise", "center" vs "centre") Maintain consistency with the project's established language style throughout branch names and command outputs Create Branch Command This command creates and checks out a new git branch with in...
1.2K
1124 frontend-ui-ux-engineer 404kidwiz/claude-supercode-skills
Provides frontend design and development expertise specializing in creating visually stunning, user-centric interfaces without requiring design mockups. Crafts beautiful UI/UX with creative design thinking, advanced styling, animations, and accessibility best practices for modern web applications. When to Use - Need to transform functional UI into visually stunning interfaces - Design mockups don't exist but beautiful UI is required - Visual polish and micro-interactions are priority - Com...
1.2K
1125 clean-ddd-hexagonal ccheney/robust-skills
Clean Architecture + DDD + Hexagonal Backend architecture combining DDD tactical patterns, Clean Architecture dependency rules, and Hexagonal ports/adapters for maintainable, testable systems. When to Use (and When NOT to) Use When Skip When Complex business domain with many rules Simple CRUD, few business rules Long-lived system (years of maintenance) Prototype, MVP, throwaway code Team of 5+ developers Solo developer or small team (1-2) Multiple entry points (API, CLI, events) Single entry p...
1.2K
1126 shadertoy bfollington/terma
Shadertoy Shader Development Overview Shadertoy is a platform for creating and sharing GLSL fragment shaders that run in the browser using WebGL. This skill provides comprehensive guidance for writing shaders including GLSL ES syntax, common patterns, mathematical techniques, and best practices specific to real-time procedural graphics. When to Use This Skill Activate this skill when: Writing or editing .glsl shader files Creating procedural graphics, generative art, or visual effects Workin...
1.2K
1127 seo-aeo-best-practices sanity-io/agent-toolkit
SEO & AEO Best Practices Principles for optimizing content for both traditional search engines (SEO) and AI-powered answer engines (AEO). Includes Google's EEAT guidelines and structured data implementation. When to Apply Reference these guidelines when: Implementing metadata and Open Graph tags Creating sitemaps and robots.txt Adding JSON-LD structured data Optimizing content for featured snippets Preparing content for AI assistants (ChatGPT, Perplexity, etc.) Evaluating content quality usi...
1.2K
1128 elite-powerpoint-designer willem4130/claude-code-skills
Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: - Minimalism First - Remove everything that doesn't serve a clear purpose - Bold & Clear - Large typography, high contrast, confident colors - Visual Hierarchy - Guide attention through size, c...
1.2K
1129 anti-render lionad-morotar/anti-render-skill
Anti-Render 理想vs现实视觉对比生成器 核心理念 通过并置(juxtaposition)手法,揭示任何领域中"承诺与交付之间巨大落差"的普遍困境。左侧呈现理想化的完美渲染,右侧揭示真实的日常面貌。 执行流程 接收图像 → 分析内容,识别所属领域为 $domain ,计算图片宽高比为 $ratio 状态判断 → 确定当前状态(破败/普通/理想) 意图识别 → 根据用户指令确定输出模式 参数映射 → 将通用五维度映射到领域专属表达 构建提示词 → 构建基于领域专属表达的提示词 生成图像 → 生成目标图像 works well with skills: image-to-prompt , prompt-to-image 工作模式 1. 图像状态识别 用户上传图片后,分析其当前状态: 状态 特征 输出目标 破败 质量问题、使用痕迹、维护不良 生成理想化渲染图(即 step 2.1) 理想 用户上传了营销图片、广告图片等精修后照片 生成轻微破败渲染图片(即 step 2.2) 普通/正常 无明显破损、日常使用状态 生成理想化渲染和轻微破败的对比图(即 step 2.3) 如状态模糊,...
1.2K
1130 browser-automation sophieguanongit/openclaw-browser-automation
Browser Automation You are a browser automation expert who has debugged thousands of flaky tests and built scrapers that run for years without breaking. You've seen the evolution from Selenium to Puppeteer to Playwright and understand exactly when each tool shines. Your core insight: Most automation failures come from three sources - bad selectors, missing waits, and detection systems. You teach people to think like the browser, use the right selectors, and let Playwright's auto-wait do its job....
1.2K
1131 differential-review trailofbits/skills
Differential Security Review Security-focused code review for PRs, commits, and diffs. Core Principles Risk-First: Focus on auth, crypto, value transfer, external calls Evidence-Based: Every finding backed by git history, line numbers, attack scenarios Adaptive: Scale to codebase size (SMALL/MEDIUM/LARGE) Honest: Explicitly state coverage limits and confidence level Output-Driven: Always generate comprehensive markdown report file Rationalizations (Do Not Skip) Rationalization Why It's Wrong R...
1.2K
1132 clickhouse-io affaan-m/everything-claude-code
ClickHouse Analytics Patterns ClickHouse-specific patterns for high-performance analytics and data engineering. When to Activate Designing ClickHouse table schemas (MergeTree engine selection) Writing analytical queries (aggregations, window functions, joins) Optimizing query performance (partition pruning, projections, materialized views) Ingesting large volumes of data (batch inserts, Kafka integration) Migrating from PostgreSQL/MySQL to ClickHouse for analytics Implementing real-time dashboar...
1.2K
1133 filament-resource mwguerra/claude-code-plugins
FilamentPHP Resource Generation Skill Overview This skill generates complete FilamentPHP v4 resources including form schemas, table configurations, relation managers, and custom pages. All generated code follows official documentation patterns. Documentation Reference CRITICAL: Before generating any resource, read: /home/mwguerra/projects/mwguerra/claude-code-plugins/filament-specialist/skills/filament-docs/references/general/03-resources/ /home/mwguerra/projects/mwguerra/claude-code-plugins/fil...
1.2K
1134 frontend-design am-will/codex-skills
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
1.2K
1135 daily-ai-news yyh211/claude-meta-skill
Daily AI News Briefing Aggregates the latest AI news from multiple sources and delivers concise summaries with direct links When to Use This Skill Activate this skill when the user: Asks for today's AI news or latest AI developments Requests a daily AI briefing or updates Mentions wanting to know what's happening in AI Asks for AI industry news, trends, or breakthroughs Wants a summary of recent AI announcements Says: "给我今天的AI资讯" (Give me today's AI news) Says: "AI有什么新动态" (What's new in AI) ...
1.2K
1136 file-name-wizard cygnusfear/agent-skills
Filename & Naming Convention Audit Instructions Perform systematic audit of all filenames and naming conventions in the codebase to identify inconsistencies, anti-patterns, and violations of naming standards. Phase 1: Discovery & Standard Extraction Step 1: Find All Files Use Glob to identify all files in the codebase: Source files ( .ts , .tsx , .js , .jsx , etc.) Config files Documentation files Test files Create comprehensive todo list of all files to audit. Step 2: Extract Naming Standards R...
1.2K
1137 postgres-pro jeffallan/claude-skills
PostgreSQL Pro Senior PostgreSQL expert with deep expertise in database administration, performance optimization, and advanced PostgreSQL features. Role Definition You are a senior PostgreSQL DBA with 10+ years of production experience. You specialize in query optimization, replication strategies, JSONB operations, extension usage, and database maintenance. You build reliable, high-performance PostgreSQL systems that scale. When to Use This Skill Analyzing and optimizing slow queries with EX...
1.2K
1138 setup-api-key elevenlabs/skills
ElevenLabs API Key Setup Guide the user through obtaining and configuring an ElevenLabs API key. Workflow Step 1: Request the API key Tell the user: To set up ElevenLabs, open the API keys page: https://elevenlabs.io/app/settings/api-keys (Need an account? Create one at https://elevenlabs.io/app/sign-up first) If you don't have an API key yet: Click "Create key" Name it (or use the default) Set permission for your key. If you provide a key with "User" permission set to "Read" this skill will aut...
1.2K
1139 django-patterns affaan-m/everything-claude-code
Django Development Patterns Production-grade Django architecture patterns for scalable, maintainable applications. When to Activate Building Django web applications Designing Django REST Framework APIs Working with Django ORM and models Setting up Django project structure Implementing caching, signals, middleware Project Structure Recommended Layout myproject/ ├── config/ │ ├── __init__.py │ ├── settings/ │ │ ├── __init__.py │ │ ├── base.py Base settings │ │ ├── develop...
1.2K
1140 miniprogram-development tencentcloudbase/skills
When to use this skill Use this skill for WeChat Mini Program development when you need to: Build or modify mini program pages and components Organize mini program project structure and configuration Debug, preview, or publish mini program projects Work with WeChat Developer Tools workflows Handle mini program runtime behavior, assets, or page config files Integrate CloudBase in a mini program project when explicitly needed Do NOT use for: Web frontend development (use web-development ) Pure bac...
1.2K
1141 django-security affaan-m/everything-claude-code
Django Security Best Practices Comprehensive security guidelines for Django applications to protect against common vulnerabilities. When to Activate Setting up Django authentication and authorization Implementing user permissions and roles Configuring production security settings Reviewing Django application for security issues Deploying Django applications to production Core Security Settings Production Settings Configuration settings/production.py import os DEBUG = False CRITICAL: Never use ...
1.2K
1142 taskfile-automation seabbs/claude-code-config
Task Automation System Use this skill when working with projects that use Task to provide easy-to-discover automation commands for development workflows. Core Principle IMPORTANT : Always prefer task commands over direct shell/language commands when a Taskfile is present. Task provides: Discoverability : task --list shows all available tasks Consistency : Standardised commands across different environments Documentation : Built-in descriptions and help Automation : Multi-step workflows (e.g., ta...
1.2K
1143 video-translation noizai/skills
Video Translation Translate a video's speech into another language, using TTS to generate the dubbed audio and replacing the original audio track. Triggers translate this video dub this video to English 把视频从 X 语译成 Y 语 视频翻译 Use Cases The user wants to watch a foreign language YouTube video but prefers to hear it in their native language. The user provides a video link and explicitly requests changing the audio language. Workflow When the user asks to translate a video: Download Video & Subtitles ...
1.2K
1144 day1-onboarding ai-native-camp/camp-1
Day 1: Onboarding 이 스킬이 호출되면 아래 STOP PROTOCOL 을 반드시 따른다. STOP PROTOCOL — 절대 위반 금지 이 프로토콜은 이 스킬의 최우선 규칙이다. 아래 규칙을 위반하면 수업이 망가진다. 각 블록은 반드시 2턴에 걸쳐 진행한다 ┌─ Phase A (첫 번째 턴) ──────────────────────────────┐ │ 1. references/에서 해당 블록 파일의 EXPLAIN 섹션을 읽는다 │ │ 2. 기능을 설명한다 │ │ 3. references/에서 해당 블록 파일의 EXECUTE 섹션을 읽는다 │ │ 4. "지금 직접 실행해보세요"라고 안내한다 │ │ 5. ⛔ 여기서 반드시 STOP. 턴을 종료한다. │ │ ...
1.2K
1145 flutter-architecting-apps flutter/skills
Architecting Flutter Applications Contents Core Architectural Principles Structuring the Layers Implementing the Data Layer Feature Implementation Workflow Examples Core Architectural Principles Design Flutter applications to scale by strictly adhering to the following principles: Enforce Separation of Concerns: Decouple UI rendering from business logic and data fetching. Organize the codebase into distinct layers (UI, Logic, Data) and further separate by feature within those layers. Maintain a ...
1.2K
1146 swift-concurrency-pro twostraws/swift-concurrency-agent-skill
No SKILL.md available for this skill. View on GitHub
1.2K
1147 planner am-will/codex-skills
Planner Agent Create detailed, phased implementation plans for bugs, features, or tasks. Process Phase 0: Research Investigate the codebase: Architecture and patterns Similar existing implementations Dependencies and frameworks Related components Analyze the request: Core requirements Challenges & edge cases Security/performance/UX considerations Phase 1: Clarify Requirements Before doing ANY documentation search: clarify requirements with user. This will narrow and aid you in finding the...
1.2K
1148 flutter-animating-apps flutter/skills
Implementing Flutter Animations Contents Core Concepts Animation Strategies Workflows Implementing Implicit Animations Implementing Explicit Animations Implementing Hero Transitions Implementing Physics-Based Animations Examples Core Concepts Manage Flutter animations using the core typed Animation system. Do not manually calculate frames; rely on the framework's ticker and interpolation classes. Animation<T> : Treat this as an abstract representation of a value that changes over time. It holds ...
1.2K
1149 flutter-architecture madteacher/mad-agents-skills
Flutter Architecture Overview Provides architectural guidance and best practices for building scalable Flutter applications using MVVM pattern, layered architecture, and recommended design patterns from the Flutter team. Project Structure: Feature-First vs Layer-First Choose the right project organization based on your app's complexity and team size. Feature-First (Recommended for teams) Organize code by business features: lib/ ├── features/ │ ├── auth/ │ │ ├── data/ │ │ ├── domain/ │ ...
1.2K
1150 nelson harrymunro/nelson
Nelson Execute this workflow for the user's mission. 1. Issue Sailing Orders Review the user's brief for ambiguity. If the outcome, scope, or constraints are unclear, ask the user to clarify before drafting sailing orders. Write one sentence for outcome , metric , and deadline . Set constraints: token budget, reliability floor, compliance rules, and forbidden actions. Define what is out of scope. Define stop criteria and required handoff artifacts. You MUST read references/admiralty-templates/sa...
1.2K