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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,560
总 Skills
37.3M
总安装量
2,452
贡献者
# Skill 仓库 描述 安装量
8151 agent-ci redwoodjs/agent-ci
Agent CI Run the full CI pipeline locally before pushing. CI was green before you started — any failure is caused by your changes. Run npx @redwoodjs/agent-ci run --quiet --all --pause-on-failure Retry When a step fails, the run pauses automatically. Fix the issue, then retry: npx @redwoodjs/agent-ci retry --name < runner-name > To re-run from an earlier step: npx @redwoodjs/agent-ci retry --name < runner-name > --from-step < N > Repeat until all jobs pass. Do not push to trigger remote CI when ...
259
8152 tanstack router jezweb/claude-skills
TanStack Router Type-safe, file-based routing for React SPAs with route-level data loading and TanStack Query integration Quick Start Last Updated : 2026-01-09 Version : @tanstack/react-router@1.146.2 npm install @tanstack/react-router @tanstack/router-devtools npm install -D @tanstack/router-plugin Optional: Zod validation adapter npm install @tanstack/zod-adapter zod Vite Config (TanStackRouterVite MUST come before react()): // vite.config.ts import { TanStackRouterVite } from '@tanstack/rout...
258
8153 hono-core bobmatnyc/claude-mpm-skills
Hono - Ultrafast Web Framework Overview Hono is a small, simple, and ultrafast web framework built on Web Standards. It runs on Cloudflare Workers, Deno, Bun, Node.js, and more with the same codebase. The name means "flame" in Japanese. Key Features: Built on Web Standards (Request/Response/fetch) Multi-runtime: Cloudflare Workers, Deno, Bun, Node.js, Vercel, AWS Lambda Ultrafast routing with RegExpRouter First-class TypeScript support Lightweight (~14KB minified) Rich middleware ecosystem I...
258
8154 ln-110-project-docs-coordinator levnikolaevich/claude-code-skills
L2 Coordinator that gathers project context once and delegates document creation to specialized L3 workers. Purpose & Scope - Single context gathering — analyzes project once, builds Context Store - Project type detection — determines hasBackend, hasDatabase, hasFrontend, hasDocker - Delegates to 5 workers — passes Context Store to each worker - Aggregates results — collects status from all workers, returns summary - Solves the "context loss" problem by gathering data once and passing exp...
258
8155 ln-210-epic-coordinator levnikolaevich/claude-code-skills
Universal Epic management coordinator that handles both creation and replanning through scope decomposition. When to Use This Skill This skill should be used when: - Start new scope/initiative requiring decomposition into multiple logical domains (CREATE mode) - Break down large architectural requirement into Epics - Update existing Epics when scope/requirements change (REPLAN mode) - Rebalance Epic scopes within an initiative - Add new Epics to existing initiative structure - First ste...
258
8156 ln-113-backend-docs-creator levnikolaevich/claude-code-skills
L3 Worker that creates 2 backend documentation files. CONDITIONAL - only invoked when project has backend or database. Purpose & Scope - Creates api_spec.md (if hasBackend) - Creates database_schema.md (if hasDatabase) - Receives Context Store from ln-110-project-docs-coordinator - OpenAPI 3.0 compliant API specification - ER diagrams in Mermaid for database schema - Never gathers context itself; uses coordinator input Invocation (who/when) - ln-110-project-docs-coordinator: CONDITION...
258
8157 ln-632-test-e2e-priority-auditor levnikolaevich/claude-code-skills
Specialized worker auditing E2E test coverage for critical paths (risk-based). Purpose & Scope - Worker in ln-630 coordinator pipeline - Audit E2E Critical Coverage (Category 2: High Priority) - Validate E2E coverage for critical paths (Money/Security/Data Priority ≥20) - Validate E2E coverage for core user journeys (Priority 15-19) - Identify wasteful E2E tests (Usefulness Score <15) - Calculate compliance score (X/10) Inputs (from Coordinator) Receives `contextStore` with risk-based...
258
8158 ln-404-test-executor levnikolaevich/claude-code-skills
Runs a single Story final test task (label "tests") through implementation/execution to To Review. Purpose & Scope - Handle only tasks labeled "tests"; other tasks go to ln-401. - Follow the 11-section test task plan (E2E/Integration/Unit, infra/docs/cleanup). - Enforce risk-based constraints: Priority ≤15; E2E 2-5, Integration 0-8, Unit 0-15, total 10-28; no framework/DB/library/performance tests. - Update Linear/kanban for this task only: Todo -> In Progress -> To Review. Task Storage ...
258
8159 ln-111-root-docs-creator levnikolaevich/claude-code-skills
L3 Worker that creates 4 root documentation files using templates and Context Store from coordinator. Purpose & Scope - Creates 4 root documentation files (entry points for AI agents) - Receives Context Store from ln-110-project-docs-coordinator - Replaces placeholders with project-specific data - Self-validates structure and content (22 questions) - Never gathers context itself; uses coordinator input Invocation (who/when) - ln-110-project-docs-coordinator: ALWAYS invoked as first wor...
258
8160 ln-700-project-bootstrap levnikolaevich/claude-code-skills
Type: L1 Top Orchestrator Category: 7XX Project Bootstrap Transforms a prototype project (Replit export or early-stage repo) into a production-ready codebase with Clean Architecture, Docker, CI/CD, and development tooling. Overview | Input | Source project directory | Output | Production-ready project with all infrastructure | Delegations | ln-710 -> ln-720 -> ln-730 -> ln-740 -> ln-750 -> ln-760 -> ln-770 -> ln-780 | Duration | ~30 minutes (vs 4+ hours manual) Workflow ``` Pha...
258
8161 cloud-cost-management aj-geddes/useful-ai-prompts
Cloud Cost Management Overview Cloud cost management involves monitoring, analyzing, and optimizing cloud spending. Implement strategies using reserved instances, spot pricing, proper sizing, and cost allocation to maximize ROI and prevent budget overruns. When to Use Reducing cloud infrastructure costs Optimizing compute spending Managing database costs Storage optimization Data transfer cost reduction Reserved capacity planning Chargeback and cost allocation Budget forecasting and alerts Imp...
258
8162 pull-request-automation aj-geddes/useful-ai-prompts
Pull Request Automation Overview Implement pull request automation to streamline code review processes, enforce quality standards, and reduce manual overhead through templated workflows and intelligent assignment rules. When to Use Code review standardization Quality gate enforcement Contributor guidance Review assignment automation Merge automation PR labeling and organization Implementation Examples 1. GitHub Pull Request Template .github/pull_request_template.md Description Briefly descr...
258
8163 frontend-routing aj-geddes/useful-ai-prompts
Frontend Routing Overview Implement client-side routing with navigation, lazy loading, protected routes, and state management for multi-page single-page applications. When to Use Multi-page navigation URL-based state management Protected/guarded routes Lazy loading of components Query parameter handling Implementation Examples 1. React Router v6 // App.tsx import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom'; import { Layout } from './components/Layout'; import { Home } fr...
258
8164 credential-scanner useai-pro/openclaw-skills-security
Credential Scanner You are a credential scanner for OpenClaw projects. Before the user runs any skill that has fileRead access, scan the workspace for exposed secrets that could be read and potentially exfiltrated. What to Scan High-Priority Files Default scope: current workspace only. Scan project-level files first: .env , .env.local , .env.production , .env.* docker-compose.yml (environment sections) config.json , settings.json , secrets.json *.pem , *.key , *.p12 , *.pfx Home directory files ...
258
8165 monetize-game opusgamelabs/game-creator
Monetize Game (Play.fun / OpenGameProtocol) Register your game on Play.fun (OpenGameProtocol), integrate the browser SDK for points tracking and leaderboards, and get a shareable play.fun URL. This is the link you post to Moltbook. What you'll get: Your game registered on Play.fun with anti-cheat config The Play.fun browser SDK integrated into your game (points widget, leaderboard, wallet connect) A rebuilt + redeployed game with the SDK active A play.fun game URL to share on Moltbook and social...
258
8166 email-sequence davila7/claude-code-templates
Email Sequence Design You are an expert in email marketing and automation. Your goal is to create email sequences that nurture relationships, drive action, and move people toward conversion. Initial Assessment 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 asking questions. Use that context and only ask for information not already covered or specific to this task. Before creating ...
258
8167 ln-732-cicd-generator levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-730-devops-setup Generates GitHub Actions CI pipeline for automated testing and validation. Purpose & Scope Creates CI/CD workflow for GitHub: - Does: Generate .github/workflows/ci.yml with lint, test, build, docker jobs - Does NOT: Configure deployment, manage secrets, set up CD pipelines Inputs | Stack Type | ln-730 coordinator | backend-dotnet, backend-python | Versions | Auto-detected | Node.js, .NET or Python versions...
258
8168 ml-paper-writing davila7/claude-code-templates
ML Paper Writing for Top AI Conferences Expert-level guidance for writing publication-ready papers targeting NeurIPS, ICML, ICLR, ACL, AAAI, and COLM. This skill combines writing philosophy from top researchers (Nanda, Farquhar, Karpathy, Lipton, Steinhardt) with practical tools: LaTeX templates, citation verification APIs, and conference checklists. Core Philosophy: Collaborative Writing Paper writing is collaborative, but Claude should be proactive in delivering drafts. The typical workflo...
258
8169 docyrus-cli-app docyrus/agent-skills
Docyrus CLI Guide for using the docyrus CLI to interact with the Docyrus platform from the terminal. Command Overview Command Description docyrus Show active environment, current auth context, and help summary docyrus env list / env use Manage named environments docyrus auth login Authenticate via OAuth2 device flow or manual tokens docyrus auth logout Logout the active account for the current environment docyrus auth who Show the active user and tenant docyrus auth accounts list / use Manage sa...
258
8170 git-advanced-workflows sickn33/antigravity-awesome-skills
Git Advanced Workflows Master advanced Git techniques to maintain clean history, collaborate effectively, and recover from any situation with confidence. When to Use This Skill Cleaning up commit history before merging Applying specific commits across branches Finding commits that introduced bugs Working on multiple features simultaneously Recovering from Git mistakes or lost commits Managing complex branch workflows Preparing clean PRs for review Synchronizing diverged branches Core Concepts 1....
258
8171 kpi-dashboard-design sickn33/antigravity-awesome-skills
KPI Dashboard Design Comprehensive patterns for designing effective Key Performance Indicator (KPI) dashboards that drive business decisions. When to Use This Skill Designing executive dashboards Selecting meaningful KPIs Building real-time monitoring displays Creating department-specific metrics views Improving existing dashboard layouts Establishing metric governance Core Concepts 1. KPI Framework Level Focus Update Frequency Audience Strategic Long-term goals Monthly/Quarterly Executives Tact...
258
8172 sql-pro sickn33/antigravity-awesome-skills
SQL Pro Senior SQL developer with mastery across major database systems, specializing in complex query design, performance optimization, and database architecture. Role Definition You are a senior SQL developer with 10+ years of experience across PostgreSQL, MySQL, SQL Server, and Oracle. You specialize in complex query optimization, advanced SQL patterns (CTEs, window functions, recursive queries), indexing strategies, and performance tuning. You build efficient, scalable database solutions ...
258
8173 comprehensive-review-full-review sickn33/antigravity-awesome-skills
Use this skill when Working on comprehensive review full review tasks or workflows Needing guidance, best practices, or checklists for comprehensive review full review Do not use this skill when The task is unrelated to comprehensive review full review You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required,...
258
8174 performance-profiling davila7/claude-code-templates
Performance Profiling Measure, analyze, optimize - in that order. 🔧 Runtime Scripts Execute these for automated profiling: Script Purpose Usage scripts/lighthouse_audit.py Lighthouse performance audit python scripts/lighthouse_audit.py https://example.com 1. Core Web Vitals Targets Metric Good Poor Measures LCP < 2.5s > 4.0s Loading INP < 200ms > 500ms Interactivity CLS < 0.1 > 0.25 Stability When to Measure Stage Tool Development Local Lighthouse CI/CD Lighthouse CI Production RUM (Real Use...
258
8175 symfony:symfony-messenger makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:symfony-messenger<div
258
8176 wechat-message-sender cloudsen/eliteforge-skills
WeChat Message Sender 目标 调用 scripts/send_wechat_message.swift ,在 macOS 微信桌面版里给指定联系人发送一段纯文本。 必填参数 contact :联系人显示名,必须与微信会话标题精确一致。 message :要发送的纯文本内容。 前置条件 已安装微信桌面版。 当前终端或 Codex 已授予 macOS 辅助功能权限。 只支持文本消息,不支持图片、文件、卡片。 工作流 校验 contact 和 message 非空。 运行脚本: swift scripts/send_wechat_message.swift --contact "<contact>" --message "<message>" 脚本会自动: 打开或激活微信。 聚焦左侧搜索框并搜索联系人。 在结果列表里查找精确匹配项。 打开会话后再次校验标题完全等于 contact 。 校验通过后发送消息。 调试 只验证定位,不真正发送: swift scripts/send_wechat_message.swift --contact "<contact>" --mess...
258
8177 kling-3-prompting aedev-tools/kling-3-prompting-skill
Overview Kling 3.0 is a unified multimodal video model. It understands cinematic direction , not keyword lists. Write prompts like a director — describe what the audience sees, hears, and feels over time. Core shift: Description → Direction. Think "direct a scene" not "describe an image." Interactive Builder Workflow When invoked, guide the user through these steps using AskUserQuestion : digraph builder { "1. Generation mode?" [ shape = diamond ] ; "Text-to-Video" [ shape = box ] ; "Image-to-Vi...
258
8178 using-dbt-for-analytics-engineering dbt-labs/dbt-agent-skills
When you use this skill, announce: "Using dbt analytics engineering skill to [brief purpose]." Core principle: Apply software engineering discipline (DRY, modularity, testing) to data transformation work through dbt's abstraction layer. When to Use - Building new dbt models, sources, or tests - Modifying existing model logic or configurations - Refactoring a dbt project structure - Creating analytics pipelines or data transformations - Working with warehouse data that needs modeling Do ...
258
8179 huggingface-llm-trainer huggingface/skills
TRL Training on Hugging Face Jobs Overview Train language models using TRL (Transformer Reinforcement Learning) on fully managed Hugging Face infrastructure. No local GPU setup required—models train on cloud GPUs and results are automatically saved to the Hugging Face Hub. TRL provides multiple training methods: SFT (Supervised Fine-Tuning) - Standard instruction tuning DPO (Direct Preference Optimization) - Alignment from preference data GRPO (Group Relative Policy Optimization) - Online RL tra...
258
8180 django-drf prowler-cloud/prowler
Critical Patterns ALWAYS separate serializers by operation: Read / Create / Update / Include ALWAYS use filterset_class for complex filtering (not filterset_fields) ALWAYS validate unknown fields in write serializers (inherit BaseWriteSerializer) ALWAYS use select_related/prefetch_related in get_queryset() to avoid N+1 ALWAYS handle swagger_fake_view in get_queryset() for schema generation ALWAYS use @extend_schema_field for OpenAPI docs on SerializerMethodField NEVER put business logic in seria...
258
8181 cold-email-sequence-generator onewave-ai/claude-skills
Cold Email Sequence Generator Create personalized, high-converting cold email sequences with optimal timing and A/B testing. Instructions You are an expert email copywriter specializing in outbound sales sequences that get responses. Your mission is to craft personalized, value-driven email sequences that respect the recipient's time while clearly communicating value. Core Capabilities Sequence Types: Classic Cold Outreach (7 emails, 2 weeks) Fast-Track (5 emails, 1 week) Long-Play Nurture...
258
8182 pgvector-semantic-search timescale/pg-aiguide
Semantic search finds content by meaning rather than exact keywords. An embedding model converts text into high-dimensional vectors, where similar meanings map to nearby points. pgvector stores these vectors in PostgreSQL and uses approximate nearest neighbor (ANN) indexes to find the closest matches quickly—scaling to millions of rows without leaving the database. Store your text alongside its embedding, then query by converting your search text to a vector and returning the rows with the small...
258
8183 ruby-rails mindrally/skills
Ruby on Rails You are an expert in Ruby and Ruby on Rails development with deep knowledge of web application patterns and Rails conventions. Core Principles Write concise, idiomatic Ruby code with accurate examples Adhere to Rails conventions (Convention over Configuration) Follow the Ruby Style Guide for formatting consistency Leverage Ruby 3.x features like pattern matching and endless methods Naming Conventions Use snake_case for files, methods, and variables Use CamelCase for classes and m...
258
8184 security-best-practices mindrally/skills
Security Best Practices When to use this skill New project : consider security from the start Security audit : inspect and fix vulnerabilities Public API : harden APIs accessible externally Compliance : comply with GDPR, PCI-DSS, etc. Instructions Step 1: Enforce HTTPS and security headers Express.js security middleware : import express from 'express' ; import helmet from 'helmet' ; import rateLimit from 'express-rate-limit' ; const app = express ( ) ; // Helmet: automatically set security heade...
258
8185 opportunity-framework owl-listener/designer-skills
Opportunity Framework You are an expert in identifying, evaluating, and prioritizing design opportunities. What You Do You help teams move from possible improvements to a prioritized roadmap. Opportunity Sources Research findings, analytics, competitive gaps, technology, stakeholder requests, support channels. Evaluation Frameworks Impact-Effort Matrix 2x2 grid: quick wins, strategic bets, fill-ins, deprioritize. RICE Scoring Reach, Impact (1-3), Confidence (%), Effort (person-weeks). Kano Model...
258
8186 pdf sickn33/antigravity-awesome-skills
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
257
8187 use-agently agentlyhq/use-agently
use-agently CLI use-agently is the CLI for Agently — a decentralized marketplace for AI agents. It is designed to be operated by AI agents as a first-class use case. IMPORTANT: Always Run the CLI First Before doing anything, you MUST run these two commands: 1. ALWAYS run doctor first — it checks your environment, wallet, and connectivity use-agently doctor 2. ALWAYS run --help to discover the current commands and flags use-agently --help Do NOT rely on this document for command syntax or flags...
257
8188 cw-prose-writing haowjy/creative-writing-skills
Prose Writing Write narrative fiction following your project's established style and conventions. Before Writing: Discover Style Guidance ALWAYS check for style guidance before writing: Step 1: Check Project Documentation Look for: CLAUDE.md - Often explains project structure WRITING.md , CONVENTIONS.md , STYLE.md README.md - May contain writing instructions Step 2: Find Style Guide Locations Common locations: .cursor/rules/styles/ - Style files ( .md or .skill packages) .cursor/rules/ - May con...
257
8189 dotnet-architect rmyndharis/antigravity-skills
Use this skill when Working on dotnet architect tasks or workflows Needing guidance, best practices, or checklists for dotnet architect Do not use this skill when The task is unrelated to dotnet architect You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md. You...
257
8190 ln-720-structure-migrator levnikolaevich/claude-code-skills
Type: L2 Domain Coordinator Category: 7XX Project Bootstrap Parent: ln-700-project-bootstrap Coordinates project restructuring from prototype layout to Clean Architecture. Purpose & Scope | Input | Current project structure, target architecture | Output | Restructured project with Clean Architecture | Workers | ln-721 (frontend), ln-722 (backend), ln-723 (mockdata), ln-724 (replit-cleaner) Scope boundaries: - Analyzes current project structure - Generates migration plan - Delegat...
257
8191 ln-302-task-replanner levnikolaevich/claude-code-skills
Worker that re-syncs existing tasks to the latest requirements for any task type. Purpose & Scope - Load full existing task descriptions from Linear - Compare them with orchestrator-provided IDEAL plan (implementation/refactoring/test) - Decide operations (KEEP/UPDATE/OBSOLETE/CREATE) and execute - Drop NFR items; only functional scope remains - Update Linear issues and kanban_board.md accordingly Task Storage Mode | Load existing | `get_issue(task_id)` per task | `Read("docs/tasks/e...
257
8192 ln-783-container-launcher levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-780-bootstrap-verifier Purpose Builds Docker images, launches containers, and performs comprehensive health verification using Docker native health checks and retry strategies. Scope: - Detect and validate docker-compose.yml configuration - Build Docker images - Launch containers with proper startup order - Verify container health using native health checks - Provide access URLs and cleanup instructions Out of Scope: - Buildin...
257
8193 ln-771-logging-configurator levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-770-crosscutting-setup Configures structured JSON logging for .NET and Python projects. Overview | Input | Context Store from ln-770 | Output | Logging configuration files | Stacks | .NET (Serilog), Python (structlog) Phase 1: Receive Context Accept Context Store from coordinator. Required Context: - `STACK`: .NET or Python - `FRAMEWORK`: ASP.NET Core or FastAPI - `FRAMEWORK_VERSION`: Version number - `PROJECT_ROOT`: ...
257
8194 ln-511-code-quality-checker levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Code Quality Checker Analyzes Done implementation tasks with quantitative Code Quality Score based on metrics, MCP Ref validation, and issue penalties. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: Story Resolution Chain. Status filter: In Progress, To Revie...
257
8195 ln-733-env-configurator levnikolaevich/claude-code-skills
ln-733-env-configurator Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-730-devops-setup Configures environment variables for development and production environments. Purpose & Scope Creates environment configuration files: Does: Generate .env files, update .gitignore for secrets protection Does NOT: Store secrets, manage external secrets managers, configure CI/CD secrets Inputs Input Source Description Project Name Directory name Used for database/service naming Backend Port Sta...
257
8196 extracting-pdf-text letta-ai/skills
Extracting PDF Text for LLMs This skill provides tools and guidance for extracting text from PDFs in formats suitable for language model consumption. Quick Decision Guide PDF Type Best Approach Script Simple text PDF PyMuPDF scripts/extract_pymupdf.py PDF with tables pdfplumber scripts/extract_pdfplumber.py Scanned/image PDF (local) pytesseract scripts/extract_with_ocr.py Complex layout, highest accuracy Mistral OCR API scripts/extract_mistral_ocr.py End-to-end RAG pipeline marker-pdf pip inst...
257
8197 feature-flag-system aj-geddes/useful-ai-prompts
Feature Flag System Overview Implement feature flags to decouple deployment from release, enable gradual rollouts, A/B testing, and provide emergency kill switches. When to Use Gradual feature rollouts A/B testing and experiments Canary deployments Beta features for specific users Emergency kill switches Trunk-based development Dark launching Operational flags (maintenance mode) User-specific features Implementation Examples 1. Feature Flag Service (TypeScript) interface FlagConfig { key: st...
257
8198 config-hardener useai-pro/openclaw-skills-security
Config Hardener You are an OpenClaw configuration security auditor. Analyze the user's OpenClaw setup and generate a hardened configuration that follows security best practices. What to Audit 1. AGENTS.md The AGENTS.md file defines what your agent can and cannot do. Check for: Missing AGENTS.md (CRITICAL) Without AGENTS.md, OpenClaw runs with default permissions — this is the most common cause of security incidents. Overly permissive rules: <!-- BAD: allows everything --> Allowed - All tools en...
257
8199 naming jwynia/agent-skills
Naming: Diagnostic Skill You diagnose naming problems and guide the creation of names that work. Your role is to identify why names fail and what makes names succeed across brands, products, characters, places, and titles. Core Principle Names operate on multiple layers that must align. Every name communicates through sound, meaning, cultural resonance, and functional fit. When layers align, names feel inevitable. When they conflict, names feel wrong even if no one can articulate why. The N...
257
8200 datadog-cli davila7/claude-code-templates
Datadog CLI A CLI tool for AI agents to debug and triage using Datadog logs and metrics. Required Reading You MUST read the relevant reference docs before using any command: Log Commands Metrics Query Syntax Workflows Dashboards Setup Environment Variables (Required) export DD_API_KEY = "your-api-key" export DD_APP_KEY = "your-app-key" Get keys from: https://app.datadoghq.com/organization-settings/api-keys Running the CLI npx @leoflores/datadog-cli < command > For non-US Datadog sites, use --sit...
257