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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,519
总 Skills
36.8M
总安装量
2,450
贡献者
# Skill 仓库 描述 安装量
7251 alicloud-ai-audio-asr cinience/alicloud-skills
Category: provider Model Studio Qwen ASR (Non-Realtime) Validation mkdir -p output/alicloud-ai-audio-asr python -m py_compile skills/ai/audio/alicloud-ai-audio-asr/scripts/transcribe_audio.py && echo "py_compile_ok" > output/alicloud-ai-audio-asr/validate.txt Pass criteria: command exits 0 and output/alicloud-ai-audio-asr/validate.txt is generated. Output And Evidence Store transcripts and API responses under output/alicloud-ai-audio-asr/ . Keep one command log or sample response per run. Use Qw...
285
7252 bun-development davila7/claude-code-templates
⚡ Bun Development Fast, modern JavaScript/TypeScript development with the Bun runtime, inspired by oven-sh/bun. When to Use This Skill Use this skill when: Starting new JS/TS projects with Bun Migrating from Node.js to Bun Optimizing development speed Using Bun's built-in tools (bundler, test runner) Troubleshooting Bun-specific issues 1. Getting Started 1.1 Installation macOS / Linux curl -fsSL https://bun.sh/install | bash Windows powershell -c "irm bun.sh/install.ps1 | iex" Homebrew ...
285
7253 e-tax kazukinagata/shinkoku
e-Tax 電子申告 — ブラウザ自動化による確定申告書等作成コーナー入力 shinkoku で計算した確定申告データを、確定申告書等作成コーナー( https://www.keisan.nta.go.jp/)に Claude in Chrome を使ってブラウザ上で入力・提出するためのスキル。 前提条件 /income-tax スキルで所得税の計算が完了していること /settlement スキルで決算書(PL/BS)の作成が完了していること /consumption-tax スキルで消費税の計算が完了していること(該当者のみ) shinkoku.config.yaml が設定済みであること ブラウザ自動化ツール がいずれか利用可能であること(下記「ブラウザ自動化方式の選択」参照) ブラウザ自動化方式の選択 確定申告書等作成コーナーへの入力には、以下の3つの方式がある。 方式 A: Claude in Chrome(推奨) 項目 内容 対象環境 Windows / macOS のネイティブ Chrome 前提 Claude in Chrome 拡張機能がインストール済み 利点 OS ...
285
7254 exa-search sickn33/antigravity-awesome-skills
Exa Search Neural search for web content, code, companies, and people via the Exa MCP server. When to Activate User needs current web information or news Searching for code examples, API docs, or technical references Researching companies, competitors, or market players Finding professional profiles or people in a domain Running background research for any development task User says "search for", "look up", "find", or "what's the latest on" MCP Requirement Exa MCP server must be configured. Add ...
285
7255 docx-official sickn33/antigravity-awesome-skills
DOCX creation, editing, and analysis Overview A user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks. Workflow Decision Tree Reading/Analyzing Content Use "Text extraction" or "Raw XML access" sections below Creating New Document Use "Creating a new Word document" workflow Editing Existing Document...
285
7256 business-model-canvas scientiacapital/skills
<quick_start> Generate a canvas: /business-model canvas for [company/idea] Claude will analyze all 9 blocks: Customer Segments (who are we serving?) Value Propositions (what value do we deliver?) Channels (how do we reach customers?) Customer Relationships (how do we engage?) Revenue Streams (how do we make money?) Key Resources (what do we need?) Key Activities (what must we do?) Key Partnerships (who helps us?) Cost Structure (what does it cost?) </quick_start> <the_9_blocks> 1. Customer...
285
7257 python-development-python-scaffold sickn33/antigravity-awesome-skills
Python Project Scaffolding You are a Python project architecture expert specializing in scaffolding production-ready Python applications. Generate complete project structures with modern tooling (uv, FastAPI, Django), type hints, testing setup, and configuration following current best practices. Use this skill when Working on python project scaffolding tasks or workflows Needing guidance, best practices, or checklists for python project scaffolding Do not use this skill when The task is unrelate...
285
7258 agentica-prompts parcadei/continuous-claude-v3
Agentica Prompt Engineering Write prompts that Agentica agents reliably follow. Standard natural language prompts fail ~35% of the time due to LLM instruction ambiguity. The Orchestration Pattern Proven workflow for context-preserving agent orchestration: 1. RESEARCH (Nia) → Output to .claude/cache/agents/research/ ↓ 2. PLAN (RP-CLI) → Reads research, outputs .claude/cache/agents/plan/ ↓ 3. VALIDATE → Checks plan against best practices ↓ 4. IMPLEMENT (...
285
7259 tldr-overview parcadei/continuous-claude-v3
TLDR Project Overview Get a token-efficient overview of any project using the TLDR stack. Trigger /overview or /tldr-overview "give me an overview of this project" "what's in this codebase" Starting work on an unfamiliar project Execution 1. File Tree (Navigation Map) tldr tree . --ext .py or .ts, .go, .rs 2. Code Structure (What Exists) tldr structure src/ --lang python --max 50 Returns: functions, classes, imports per file 3. Call Graph Entry Points (Architecture) tldr calls src/ R...
285
7260 agentica-infrastructure parcadei/continuous-claude-v3
Agentica Infrastructure Reference Complete API specification for Agentica multi-agent coordination infrastructure. When to Use Building multi-agent workflows with Agentica patterns Need exact constructor signatures for pattern classes Want to understand coordination database schema Implementing custom patterns using primitives Debugging agent tracking or orphan detection Quick Reference 11 Pattern Classes Pattern Purpose Key Method Swarm Parallel perspectives .execute(query) Pipeline Sequentia...
285
7261 agentica-claude-proxy parcadei/continuous-claude-v3
Agentica-Claude Code Proxy Integration Use this skill when developing or debugging the Agentica-Claude proxy integration. When to Use Setting up Agentica agents to use Claude Code tools Debugging agent hallucination issues Fixing permission errors in file operations Understanding the REPL response format Architecture Overview Agentica Agent → S_M_BASE_URL → Claude Proxy → claude -p → Claude CLI (with tools) (localhost:2345) (localhost:8080) Critical Requirements 1. --allowe...
285
7262 idempotent-redundancy parcadei/continuous-claude-v3
Idempotent Redundancy When adding redundant paths (fallbacks, belt-and-suspenders), make them idempotent. Pattern Redundancy without idempotency causes loops, churn, or data corruption. DO Use _is_merge: true for Braintrust updates Check if value exists before writing (fallback only if missing) Use atomic write/rename for file operations Make reconciliation steps safe to run repeatedly DON'T Write unconditionally in fallback paths Allow multiple writers to overwrite each other Fire "repair" ...
285
7263 search-tools parcadei/continuous-claude-v3
Search Tool Hierarchy When searching code, use this decision tree: Decision Tree Need CONCEPTUAL/SEMANTIC search? (how does X work, find patterns, understand architecture) → Use LEANN (/leann-search) - embedding-based semantic search → PreToolUse hook auto-redirects semantic Grep queries Need to understand code STRUCTURE? (find function calls, class usages, refactor patterns) → Use AST-grep (/ast-grep-find) Need to find TEXT in code? → Use Morph (/morph-search) - 20x faster → I...
285
7264 mcp-scripts parcadei/continuous-claude-v3
MCP Script Rules When working with files in scripts/: DO Use CLI arguments for all parameters (argparse) Include USAGE docstring at top of file Use call_mcp_tool("server__tool", params) pattern Handle errors gracefully with informative messages Print results to stdout for Claude to process DON'T Hardcode parameters in the script Edit scripts to change parameters (use CLI args instead) Import from servers/ directly (use runtime.mcp_client) Tool Naming Tool IDs use double underscore: serverName...
285
7265 explicit-identity parcadei/continuous-claude-v3
Explicit Identity Across Boundaries Never rely on "latest" or "current" when crossing process or async boundaries. Pattern Pass explicit identifiers through the entire pipeline. "Most recent" is a race condition. DO Pass --session-id $ID when spawning processes Store IDs in state files for later correlation Use full UUIDs, not partial matches Keep different ID types separate (don't collapse concepts) DON'T Query for "most recent session" at execution time Assume the current context will stil...
285
7266 cli-reference parcadei/continuous-claude-v3
CLI Reference Complete reference for Claude Code command-line interface. When to Use "What CLI flags are available?" "How do I use headless mode?" "Claude in automation/CI/CD" "Output format options" "System prompt via CLI" "How do I spawn agents properly?" Core Commands Command Description Example claude Start interactive REPL claude claude "query" REPL with initial prompt claude "explain this project" claude -p "query" Headless mode (SDK) claude -p "explain function" cat file | claude -p Pro...
285
7267 kernel-cli kernel/skills
Kernel CLI The Kernel CLI provides command-line access to Kernel's cloud browser platform. Installation Homebrew: brew install kernel/tap/kernel (>=v0.13.4) npm: npm install -g @onkernel/cli (>=v0.13.4) Authentication Preferred: Set KERNEL_API_KEY environment variable Fallback: Run kernel login for interactive OAuth Available Commands Command Area Skill Name Description Browser Management kernel-browser-management Create, list, delete browser sessions App Deployment kernel-app-deployment Deplo...
285
7268 patents-search yorkeccak/scientific-skills
Patents Search Search the complete global patent database using natural language queries powered by Valyu's semantic search API. Why This Skill is Powerful No API Parameter Parsing: Just pass natural language queries directly - no need to construct complex search parameters Semantic Search: Understands the meaning of your query, not just keyword matching Full-Text Access: Returns complete patent information including claims, descriptions, and technical details Image Links: Includes patent diag...
285
7269 deploying-airflow astronomer/agents
Deploying Airflow This skill covers deploying Airflow DAGs and projects to production, whether using Astro (Astronomer's managed platform) or open-source Airflow on Docker Compose or Kubernetes. Choosing a path: Astro is a good fit for managed operations and faster CI/CD. For open-source, use Docker Compose for dev and the Helm chart for production. Astro (Astronomer) Astro provides CLI commands and GitHub integration for deploying Airflow projects. Deploy Commands Command What It Does astro dep...
285
7270 observability-edot-dotnet-instrument elastic/agent-skills
EDOT .NET Instrumentation Read the setup guide before making changes: EDOT .NET setup EDOT .NET configuration OpenTelemetry .NET instrumentation Guidelines Add NuGet packages: Elastic.OpenTelemetry and OpenTelemetry.Instrumentation.AspNetCore (for ASP.NET Core apps) Register EDOT in startup: call builder.AddElasticOpenTelemetry() on the IHostApplicationBuilder (in Program.cs or equivalent). Without this, no telemetry is collected Set exactly three required environment variables: OTEL_SERVICE_NAM...
285
7271 vercel-react-best-practices sickn33/antigravity-awesome-skills
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
284
7272 alicloud-data-analytics-dataanalysisgbi cinience/alicloud-skills
Category: service DataAnalysisGBI Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for DataAnalysisGBI. Workflow Confirm region, resource identifiers, and desired action. Discover API list and required parameters (see references). Call API with SDK or OpenAPI Explorer. Verify results with describe/list APIs. AccessKey priority (must follow) Environment variables: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID Region policy: ALIC...
284
7273 alicloud-ai-audio-tts-voice-design cinience/alicloud-skills
Category: provider Model Studio Qwen TTS Voice Design Use voice design models to create controllable synthetic voices from natural language descriptions. Critical model names Use one of these exact model strings: qwen3-tts-vd-2026-01-26 qwen3-tts-vd-realtime-2026-01-15 Prerequisites Install SDK in a virtual environment: python3 -m venv .venv . .venv/bin/activate python -m pip install dashscope Set DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials . No...
284
7274 wireframe markdown-viewer/skills
UI Wireframe & Mockup Generator Quick Start: Choose platform (Web/iOS/Android) → Add UI components from stencil library → Arrange in screen layout → Add navigation flows → Wrap in ```drawio fence. ⚠️ IMPORTANT: Always use ```drawio code fence. NEVER use ```xml — it will NOT render as a diagram. Critical Rules 🔗 This is a drawio-derived skill. All structure, layout, and edge routing rules inherit from drawio SKILL.md . Read the base rules first. Wireframe-specific additions: Check stencils/README...
284
7275 d3-viz chrisvoncsefalvay/claude-d3js-skill
D3.js Visualisation Overview This skill provides guidance for creating sophisticated, interactive data visualisations using d3.js. D3.js (Data-Driven Documents) excels at binding data to DOM elements and applying data-driven transformations to create custom, publication-quality visualisations with precise control over every visual element. The techniques work across any JavaScript environment, including vanilla JavaScript, React, Vue, Svelte, and other frameworks. When to use d3.js Use d3.js for...
284
7276 site-crawler mindmorass/reflex
Site Crawler Skill Respectfully crawl documentation sites and web content for RAG ingestion. Overview Documentation sites, blogs, and knowledge bases contain valuable structured content. This skill covers: Respectful crawling (robots.txt, rate limiting) Structure-preserving extraction Incremental updates (only fetch changed pages) Sitemap-based discovery Prerequisites HTTP client pip install httpx HTML parsing pip install beautifulsoup4 lxml Clean article extraction pip install trafilat...
284
7277 documentation-templates davila7/claude-code-templates
Documentation Templates Templates and structure guidelines for common documentation types. 1. README Structure Essential Sections (Priority Order) Section Purpose Title + One-liner What is this? Quick Start Running in <5 min Features What can I do? Configuration How to customize API Reference Link to detailed docs Contributing How to help License Legal README Template Project Name Brief one-line description. Quick Start [Minimum steps to run] Features - Feature 1 - Feature 2 Configur...
284
7278 systematic-debugging davila7/claude-code-templates
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
284
7279 competitive-ads-extractor davila7/claude-code-templates
Competitive Ads Extractor This skill extracts your competitors' ads from ad libraries and analyzes what's working—the problems they're highlighting, use cases they're targeting, and copy/creative that's resonating. When to Use This Skill Researching competitor ad strategies Finding inspiration for your own ads Understanding market positioning Identifying successful ad patterns Analyzing messaging that works Discovering new use cases or pain points Planning ad campaigns with proven concepts Wha...
284
7280 resume-handoff parcadei/continuous-claude-v3
Resume work from a handoff document You are tasked with resuming work from a handoff document through an interactive process. These handoffs contain critical context, learnings, and next steps from previous work sessions that need to be understood and continued. Initial Response When this command is invoked: If the path to a handoff document was provided: If a handoff document path was provided as a parameter, skip the default message Immediately read the handoff document FULLY Immediately ...
284
7281 morph-apply parcadei/continuous-claude-v3
Morph Fast Apply Fast, AI-powered file editing using the Morph Apply API. Edit files without reading them first. Processes at 10,500 tokens/sec with 98% accuracy. When to Use Fast file edits without reading entire file first Batch edits to a file (multiple changes in one operation) When you know what to change but file is large Large files where reading would consume too many tokens Key Pattern: Code Markers Use // ... existing code ... (or language-appropriate comments) to mark where edits g...
284
7282 hook-developer parcadei/continuous-claude-v3
Hook Developer Complete reference for developing Claude Code hooks. Use this to write hooks with correct input/output schemas. When to Use Creating a new hook Debugging hook input/output format Understanding what fields are available Setting up hook registration in settings.json Learning what hooks can block vs inject context Quick Reference Hook Fires When Can Block? Primary Use PreToolUse Before tool executes YES Block/modify tool calls PostToolUse After tool completes Partial React to tool ...
284
7283 validate-agent parcadei/continuous-claude-v3
Note: The current year is 2025. When validating tech choices, check against 2024-2025 best practices. Validate Agent You are a validation agent spawned to validate a technical plan's choices against current best practices. You research external sources to verify the plan's technology decisions are sound, then write a validation handoff. What You Receive When spawned, you will receive: Plan content - The implementation plan to validate Plan path - Location of the plan file Handoff directory ...
284
7284 tdd parcadei/continuous-claude-v3
Test-Driven Development Philosophy Core principle : Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. Good tests are integration-style: they exercise real code paths through public APIs. They describe what the system does, not how it does it. A good test reads like a specification - "user can checkout with valid cart" tells you exactly what capability exists. These tests survive refactors because they don't care about i...
284
7285 repoprompt parcadei/continuous-claude-v3
RepoPrompt Skill When to Use Explore codebase structure (tree, codemaps) Search code with context lines Get code signatures without full file content (token-efficient) Read file slices (specific line ranges) Build context for tasks Token Optimization RepoPrompt is more token-efficient than raw file reads: structure → signatures only (not full content) read --start-line --limit → slices instead of full files search --context-lines → relevant matches with context CLI Usage If installed to PATH ...
284
7286 rate-limiting-implementation aj-geddes/useful-ai-prompts
Rate Limiting Implementation Overview Implement rate limiting and throttling mechanisms to protect your services from abuse, ensure fair resource allocation, and maintain system stability under load. When to Use Protecting public APIs from abuse Preventing DOS/DDOS attacks Ensuring fair resource usage across users Implementing API quotas and billing tiers Managing system load and backpressure Enforcing SLA limits Controlling third-party API usage Database connection management Rate Limiting Al...
284
7287 reactive-programming aj-geddes/useful-ai-prompts
Reactive Programming Overview Build responsive applications using reactive streams and observables for handling asynchronous data flows. When to Use Complex async data flows Real-time data updates Event-driven architectures UI state management WebSocket/SSE handling Combining multiple data sources Implementation Examples 1. RxJS Basics import { Observable, Subject, BehaviorSubject, fromEvent, interval } from 'rxjs'; import { map, filter, debounceTime, distinctUntilChanged, switchMap } from 'rx...
284
7288 python-fastapi-development sickn33/antigravity-awesome-skills
Python/FastAPI Development Workflow Overview Specialized workflow for building production-ready Python backends with FastAPI, featuring async patterns, SQLAlchemy ORM, Pydantic validation, and comprehensive API patterns. When to Use This Workflow Use this workflow when: Building new REST APIs with FastAPI Creating async Python backends Implementing database integration with SQLAlchemy Setting up API authentication Developing microservices Workflow Phases Phase 1: Project Setup Skills to Invoke a...
284
7289 bicep-diagrams eraserlabs/eraser-io
Bicep Diagram Generator Generates architecture diagrams directly from Azure Bicep files. Bicep is a domain-specific language (DSL) for deploying Azure resources declaratively. When to Use Activate this skill when: User has Bicep files (.bicep) and wants to visualize the infrastructure User asks to "diagram my Bicep" or "visualize this Bicep infrastructure" User mentions Bicep or Azure Bicep User wants to see the architecture of their Bicep-deployed resources How It Works This skill generate...
284
7290 fal-generate fal-ai-community/skills
fal.ai Generate Generate images and videos using state-of-the-art AI models on fal.ai. Scripts Script Purpose generate.sh Generate images/videos (queue-based) upload.sh Upload local files to fal CDN search-models.sh Search and discover models get-schema.sh Get OpenAPI schema for any model Queue System (Default) All requests use the queue system by default for reliability: User Request → Queue Submit → Poll Status → Get Result ↓ request_id Benefits: Long-running tasks (video) won't timeout Can ch...
284
7291 mongodb-connection mongodb/agent-skills
MongoDB Connection Optimizer You are an expert in MongoDB connection management across all officially supported driver languages (Node.js, Python, Java, Go, C, Ruby, PHP, etc.). Your role is to ensure connection configurations are optimized for the user's specific environment and requirements, avoiding the common pitfall of blindly applying arbitrary parameters. Core Principle: Context Before Configuration NEVER add connection pool parameters or timeout settings without first understanding the a...
284
7292 simplify brianlovin/agent-config
You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. This is a balance that you have mastered as a result your years as an expert software engineer. You will analyze recently modified code and apply refi...
284
7293 comic-panel-generation eachlabs/skills
Comic Panel Generation Generate professional comic and manga artwork using each::sense. This skill creates single panels, multi-panel strips, full page layouts, and complete comic sequences with consistent character designs. Features Single Panels : Individual comic panels with dynamic compositions Multi-Panel Strips : Traditional 3-4 panel comic strips Manga Pages : Japanese manga-style page layouts with reading flow Superhero Comics : Western comic book style with bold colors and action Webtoo...
284
7294 color-system owl-listener/designer-skills
Color System You are an expert in building systematic, accessible color palettes for digital products. What You Do You create comprehensive color systems with raw palettes, semantic mapping, and accessibility compliance. Color System Layers 1. Brand Palette Primary, secondary, and accent colors with full tonal scales (50-950 or equivalent). 2. Neutral Palette Gray scale for text, backgrounds, borders, and surfaces. 3. Semantic Colors Success (green), warning (amber), error (red), info (blue) Eac...
284
7295 outline-coach jwynia/agent-skills
Outline Coach: Assistive Structural Guidance Skill You are an outline coach. Your role is to help writers develop their own story structure through questions, diagnosis, and guided exploration. You never generate outline content for them. The Core Constraint You do not generate: Scene beats or beat sequences Character arc mappings Plot structure proposals Worldbuilding systems Pacing recommendations as specific structures Sample prose or dialogue Any structural content they could copy into t...
284
7296 numpy-best-practices mindrally/skills
NumPy Best Practices Expert guidelines for NumPy development, focusing on array programming, numerical computing, and performance optimization. Code Style and Structure Write concise, technical Python code with accurate NumPy examples Prefer vectorized operations over explicit loops for performance Use descriptive variable names reflecting data content (e.g., weights, gradients, input_array) Follow PEP 8 style guidelines for Python code Use functional programming patterns when appropriate Arra...
284
7297 alicloud-storage-oss-ossutil cinience/alicloud-skills
Category: tool OSS (ossutil 2.0) CLI Skill Validation python skills/storage/oss/alicloud-storage-oss-ossutil/scripts/check_ossutil.py --output output/alicloud-storage-oss-ossutil/validate.txt Pass criteria: command exits 0 and output/alicloud-storage-oss-ossutil/validate.txt is generated. Output And Evidence Save command outputs, object listings, and sync logs under output/alicloud-storage-oss-ossutil/ . Keep at least one upload or listing result as evidence. Goals Use ossutil 2.0 to manage OSS:...
283
7298 wix-cli-backend-event wix/skills
Wix CLI Backend Event Extension Creates event extensions for Wix CLI applications. Events are triggered when specific conditions occur—on a Wix user's site for app projects, or on your project's site for headless projects. Your project responds using event extensions built on JavaScript SDK webhooks; the CLI subscribes your project to these webhooks. Common use cases: run logic when a contact is created, an order is placed, a booking is confirmed, or a blog post is published. Quick Start Checkli...
283
7299 sympy davila7/claude-code-templates
SymPy - Symbolic Mathematics in Python Overview SymPy is a Python library for symbolic mathematics that enables exact computation using mathematical symbols rather than numerical approximations. This skill provides comprehensive guidance for performing symbolic algebra, calculus, linear algebra, equation solving, physics calculations, and code generation using SymPy. When to Use This Skill Use this skill when: Solving equations symbolically (algebraic, differential, systems of equations) Per...
283
7300 copy-editing davila7/claude-code-templates
Copy Editing You are an expert copy editor specializing in marketing and conversion copy. Your goal is to systematically improve existing copy through focused editing passes while preserving the core message. Core Philosophy Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before editing. Use brand voice and customer language from that context to guide your edits. Good copy editing isn't a...
283