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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,413
总 Skills
88.7M
总安装量
2,575
贡献者
# Skill 仓库 描述 安装量
1951 django-expert vintasoftware/django-ai-plugins
Django Expert Overview This skill provides expert guidance for Django backend development with comprehensive coverage of models, views, Django REST Framework, forms, authentication, testing, and performance optimization. It follows official Django best practices and modern Python conventions to help you build robust, maintainable applications. Key Capabilities: Model design with optimal ORM patterns View implementation (FBV, CBV, DRF viewsets) Django REST Framework API development Query optimiza...
4K
1952 playwriter remorses/playwriter
Quick Start Get a session ID first playwriter session new => 1 Execute code with your session playwriter -s 1 -e "await page.goto('https://example.com')" playwriter -s 1 -e "console.log(await accessibilitySnapshot({ page }))" playwriter -s 1 -e "await page.screenshot({ path: 'shot.png', scale: 'css' })" If playwriter is not found, use npx playwriter@latest or bunx playwriter@latest. Full Documentation Always run playwriter skill to get the complete, up-to-date skill instructions. The sk...
4K
1953 team-builder affaan-m/everything-claude-code
Team Builder Interactive menu for browsing and composing agent teams on demand. Works with flat or domain-subdirectory agent collections. When to Use You have multiple agent personas (markdown files) and want to pick which ones to use for a task You want to compose an ad-hoc team from different domains (e.g., Security + SEO + Architecture) You want to browse what agents are available before deciding Prerequisites Agent files must be markdown files containing a persona prompt (identity, rules, wo...
4K
1954 claude-devfleet affaan-m/everything-claude-code
Claude DevFleet Multi-Agent Orchestration When to Use Use this skill when you need to dispatch multiple Claude Code agents to work on coding tasks in parallel. Each agent runs in an isolated git worktree with full tooling. Requires a running Claude DevFleet instance connected via MCP: claude mcp add devfleet --transport http http://localhost:18801/mcp How It Works User → "Build a REST API with auth and tests" ↓ plan_project(prompt) → project_id + mission DAG ↓ Show plan to user → get approval ↓ ...
4K
1955 calendar-automation claude-office-skills/skills
Calendar Automation Automate Google Calendar and Outlook workflows for meeting management, time blocking, daily digests, and cross-platform synchronization. Based on n8n workflow templates. Overview This skill covers: Meeting scheduling automation Time blocking strategies Daily calendar digests to Slack Meeting prep reminders Calendar analytics Core Workflows 1. Daily Calendar Digest to Slack workflow : "Morning Calendar Briefing" schedule : "6:00 AM daily" steps : 1. get_today_events : calendar...
4K
1956 home-assistant-best-practices homeassistant-ai/skills
Home Assistant Best Practices Use native Home Assistant syntax wherever possible. Templates bypass validation and fail silently at runtime, making intent opaque. Native Conditions Over Templates See Conditions and wait_for_trigger docs. Instead of template Use native construct {{ states('sensor.x') in ['a', 'b'] }} condition: state with state: ["a", "b"] {{ not is_state('sensor.x', 'off') }} condition: not wrapping a state condition {{ state_attr('alarm.x', 'changed_by') == 'Guest' }} condition:...
4K
1957 supply-chain-risk-auditor trailofbits/skills
Supply Chain Risk Auditor Activates when the user says "audit this project's dependencies". When to Use Assessing dependency risk before a security audit Evaluating supply chain attack surface of a project Identifying unmaintained or risky dependencies Pre-engagement scoping for supply chain concerns When NOT to Use Active vulnerability scanning (use dedicated tools like npm audit, pip-audit) Runtime dependency analysis License compliance auditing Purpose You systematically evaluate all dependen...
4K
1958 embedded-systems jeffallan/claude-skills
Embedded Systems Engineer Senior embedded systems engineer with deep expertise in microcontroller programming, RTOS implementation, and hardware-software integration for resource-constrained devices. Role Definition You are a senior embedded systems engineer with 10+ years of firmware development experience. You specialize in ARM Cortex-M, ESP32, FreeRTOS, bare-metal programming, and real-time systems. You build reliable, efficient firmware that meets strict timing, power, and resource constr...
4K
1959 pptx-generator minimax-ai/skills
PPTX Generator & Editor Overview This skill handles all PowerPoint tasks: reading/analyzing existing presentations, editing template-based decks via XML manipulation, and creating presentations from scratch using PptxGenJS. It includes a complete design system (color palettes, fonts, style recipes) and detailed guidance for every slide type. Quick Reference Task Approach Read/analyze content python -m markitdown presentation.pptx Edit or create from template See Editing Presentations Create from...
4K
1960 golang-naming samber/cc-skills-golang
Community default. A company skill that explicitly supersedes samber/cc-skills-golang@golang-naming skill takes precedence. Go Naming Conventions Go favors short, readable names. Capitalization controls visibility — uppercase is exported, lowercase is unexported. All identifiers MUST use MixedCaps, NEVER underscores. "Clear is better than clever." — Go Proverbs "Design the architecture, name the components, document the details." — Go Proverbs To ignore a rule, just add a comment to the code. Qu...
4K
1961 data-analysis claude-office-skills/skills
Data Analysis When to use this skill Data exploration : Understand a new dataset Report generation : Derive data-driven insights Quality validation : Check data consistency Decision support : Make data-driven recommendations Instructions Step 1: Load and explore data Python (Pandas) : import pandas as pd import numpy as np Load CSV df = pd . read_csv ( 'data.csv' ) Basic info print ( df . info ( ) ) print ( df . describe ( ) ) print ( df . head ( 10 ) ) Check missing values print ( df . isnul...
4K
1962 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...
4K
1963 golang-context samber/cc-skills-golang
Community default. A company skill that explicitly supersedes samber/cc-skills-golang@golang-context skill takes precedence. Go context.Context Best Practices context.Context is Go's mechanism for propagating cancellation signals, deadlines, and request-scoped values across API boundaries and between goroutines. Think of it as the "session" of a request — it ties together every operation that belongs to the same unit of work. Best Practices Summary The same context MUST be propagated through the...
4K
1964 clerk-expo-patterns clerk/skills
Expo Patterns SDK: @clerk/expo v3+. Requires Expo 53+, React Native 0.73+. What Do You Need? Task Reference Persist tokens with SecureStore references/token-storage.md OAuth (Google, Apple, GitHub) references/oauth-deep-linking.md Protected screens with Expo Router references/protected-routes.md Push notifications with user data references/push-notifications.md Mental Model Clerk stores the session token in memory by default. In native apps: SecureStore — encrypt token in device keychain (recomm...
4K
1965 golang-data-structures samber/cc-skills-golang
Persona: You are a Go engineer who understands data structure internals. You choose the right structure for the job — not the most familiar one — by reasoning about memory layout, allocation cost, and access patterns. Go Data Structures Built-in and standard library data structures: internals, correct usage, and selection guidance. For safety pitfalls (nil maps, append aliasing, defensive copies) see samber/cc-skills-golang@golang-safety skill. For channels and sync primitives see samber/cc-skil...
4K
1966 yahoo-finance gracefullight/stock-checker
Yahoo Finance CLI A Python CLI for fetching comprehensive stock data from Yahoo Finance using yfinance. Requirements Python 3.11+ uv (for inline script dependencies) Installing uv The script requires uv - an extremely fast Python package manager. Check if it's installed: uv --version If not installed, install it using one of these methods: macOS / Linux curl -LsSf https://astral.sh/uv/install.sh | sh macOS (Homebrew) brew install uv Windows powershell - ExecutionPolicy ByPass - c "irm https://as...
4K
1967 gemini-live-api-dev google-gemini/gemini-skills
Gemini Live API Development Skill Overview The Live API enables low-latency, real-time voice and video interactions with Gemini over WebSockets. It processes continuous streams of audio, video, or text to deliver immediate, human-like spoken responses. Key capabilities: Bidirectional audio streaming — real-time mic-to-speaker conversations Video streaming — send camera/screen frames alongside audio Text input/output — send and receive text within a live session Audio transcriptions — get text tr...
4K
1968 terraform-test hashicorp/agent-skills
Terraform Test Terraform's built-in testing framework enables module authors to validate that configuration updates don't introduce breaking changes. Tests execute against temporary resources, protecting existing infrastructure and state files. Core Concepts Test File: A .tftest.hcl or .tftest.json file containing test configuration and run blocks that validate your Terraform configuration. Test Block: Optional configuration block that defines test-wide settings (available since Terraform 1....
4K
1969 golang-safety samber/cc-skills-golang
Persona: You are a defensive Go engineer. You treat every untested assumption about nil, capacity, and numeric range as a latent crash waiting to happen. Go Safety: Correctness & Defensive Coding Prevents programmer mistakes — bugs, panics, and silent data corruption in normal (non-adversarial) code. Security handles attackers; safety handles ourselves. Best Practices Summary Prefer generics over any when the type set is known — compiler catches mismatches instead of runtime panics Always use co...
4K
1970 clerk-android clerk/skills
Clerk Android (Native) This skill implements Clerk in native Android projects by following current clerk-android SDK and docs patterns. Activation Rules Activate this skill when either condition is true: The user explicitly asks for Android, Kotlin, Jetpack Compose, or native mobile Clerk implementation on Android. The project appears to be native Android (for example build.gradle(.kts) with Android plugins, AndroidManifest.xml , app/src/main/java , Compose UI files). Do not activate this skill ...
4K
1971 expo-brownfield expo/skills
Expo Brownfield A brownfield app is an existing native iOS or Android app that adopts React Native incrementally, as opposed to a greenfield app that is React Native from day one. Expo supports two distinct ways to add React Native to a brownfield project: Approach What ships to the native app When to choose Isolated Prebuilt AAR / XCFramework Native team doesn't need Node or RN tooling; RN code can live in a separate repo Integrated React Native sources added to the existing Gradle / CocoaPods ...
4K
1972 opencli-oneshot jackwener/opencli
CLI-ONESHOT — 单点快速 CLI 生成 给一个 URL + 一句话描述,4 步生成一个 CLI 命令。 完整探索式开发请看 opencli-explorer skill 。 遇到以下情况立即切换到 explorer,不要在 oneshot 里继续硬撑: Step 3 验证 fetch 始终拿不到数据(签名/风控,非 cookie/header 能解决的) 需要 Pinia Store Action 触发 API 同一站点要生成 2 个以上命令 opencli browser network 完全空,JS bundle 里也找不到 baseURL 输入 项目 示例 URL https://x.com/jakevin7/lists Goal 获取我的 Twitter Lists 流程 Step 1: 打开页面 + 抓包 opencli browser open < 目标 URL > 打开目标页面(自动开始抓包) opencli browser wait time 3 等页面加载完、API 请求触发 opencli browser network 查看捕获的 JSON AP...
3.9K
1973 writing-clearly-and-concisely softaworks/agent-toolkit
Writing Clearly and Concisely Overview Write with clarity and force. This skill covers what to do (Strunk) and what not to do (AI patterns). When to Use This Skill Use this skill whenever you write prose for humans: Documentation, README files, technical explanations Commit messages, pull request descriptions Error messages, UI copy, help text, comments Reports, summaries, or any explanation Editing to improve clarity If you're writing sentences for a human to read, use this skill. Limited Conte...
3.9K
1974 tts noizai/skills
tts Convert any text into speech audio. Supports two backends (Kokoro local, Noiz cloud), two modes (simple or timeline-accurate), and per-segment voice control. Triggers text to speech / tts / speak / say voice clone / dubbing epub to audio / srt to audio / convert to audio 语音 / 说 / 讲 / 说话 Simple Mode — text to audio speak is the default — the subcommand can be omitted: Basic usage (speak is implicit) python3 skills/tts/scripts/tts.py -t "Hello world" add -o path to save python3 skills/tts/sc...
3.9K
1975 payload payloadcms/skills
Payload Application Development Payload is a Next.js native CMS with TypeScript-first architecture, providing admin panel, database management, REST/GraphQL APIs, authentication, and file storage. Quick Reference Task Solution Details Auto-generate slugs slugField() FIELDS.mdslug-field-helper Restrict content by user Access control with query ACCESS-CONTROL.mdrow-level-security-with-complex-queries Local API user ops user + overrideAccess: false QUERIES.mdaccess-control-in-local-api Draft/publ...
3.9K
1976 office-mcp claude-office-skills/skills
Office MCP Server Overview A complete MCP (Model Context Protocol) server providing 39 tools for Office document operations. Implemented in TypeScript/Node.js with real functionality (not placeholders). Tool Categories PDF Tools (10) Tool Description extract_text_from_pdf Extract text content, supports page selection extract_tables_from_pdf Extract table data from PDFs merge_pdfs Merge multiple PDFs into one split_pdf Split PDF by page ranges compress_pdf Reduce PDF file size add_watermark_to_pd...
3.9K
1977 qa-test-planner softaworks/agent-toolkit
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
3.9K
1978 file-organizer composiohq/awesome-claude-skills
File Organizer This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization. When to Use This Skill Your Downloads folder is a chaotic mess You can't find files because they're scattered everywhere You have duplicate files taking up space Your folder structure doesn't make sense anymore You want to establish better organization habits You're starting a new project and...
3.9K
1979 chinese-novelist penglonghuang/chinese-novelist-skill
Chinese Novelist: 中文小说创作助手 分章节创作引人入胜的中文短篇小说,每章结尾设置悬念钩子。 核心创作流程 前置阶段:创作规划(5问确认后疯狂创作) 快速确认5个核心问题后,立即进入疯狂创作模式: 📝 问题 1:题材与风格 A. 悬疑推理(紧张刺激) B. 现代言情(甜宠/虐恋) C. 古代言情(宫廷/江湖) D. 奇幻玄幻(修仙/魔法) E. 科幻未来(星际/赛博) F. 武侠仙侠(江湖/修仙) G. 历史架空(权谋/战争) H. 都市现实(职场/商战) 选择 A-H,或自定义: 📝 问题 2:主角设定 A. 男性(学生/侦探/医生/商人/官员/修仙者...) B. 女性(学生/明星/医生/公主/修仙者...) C. 双主角(一男一女,恋人/搭档/对手) D. 群像(3-5人轮流视角) 选择 A-D,并说明职业/身份: 📝 问题 3:主角性格 A. 热血正义(嫉恶如仇、勇往直前) B. 冷静智慧(理性分析、布局谋划) C. 温暖治愈(善良温和、乐于助人) D. 高冷孤傲(独来独往、外冷内热) E. 阴暗腹黑(心思深沉、亦正亦邪) F. 成长逆袭...
3.9K
1980 validate-skills callstackincubator/agent-skills
Validate all skills in `skills/` against the agentskills.io spec and Claude Code best practices. Validation Checklist For each skill directory, verify: Spec Compliance (agentskills.io) | `name` format | 1-64 chars, lowercase alphanumeric + hyphens, no leading/trailing/consecutive hyphens | `name` matches directory | Directory name must equal `name` field | `description` length | 1-1024 characters, non-empty | Optional fields valid | `license`, `metadata`, `compatibility` if prese...
3.9K
1981 golang-documentation samber/cc-skills-golang
Persona: You are a Go technical writer and API designer. You treat documentation as a first-class deliverable — accurate, example-driven, and written for the reader who has never seen this codebase before. Modes: Write mode — generating or filling in missing documentation (doc comments, README, CONTRIBUTING, CHANGELOG, llms.txt). Work sequentially through the checklist in Step 2, or parallelize across packages/files using sub-agents. Review mode — auditing existing documentation for completeness...
3.9K
1982 golang-database samber/cc-skills-golang
Persona: You are a Go backend engineer who writes safe, explicit, and observable database code. You treat SQL as a first-class language — no ORMs, no magic — and you catch data integrity issues at the boundary, not deep in the application. Modes: Write mode — generating new repository functions, query helpers, or transaction wrappers: follow the skill's sequential instructions; launch a background agent to grep for existing query patterns and naming conventions in the codebase before generating ...
3.9K
1983 shopify-app-store-review shopify/shopify-ai-toolkit
You are a Shopify App Store reviewer performing a pre-submission compliance check against a developer's local codebase. Your role is to evaluate each requirement listed below against the code in this project, identifying potential compliance issues before the app is submitted for official review. How to Process Requirements To manage context efficiently, process each requirement independently using a sub-agent or separate evaluation pass. For each requirement: Read the requirement's name, descri...
3.9K
1984 nuxt4-patterns affaan-m/everything-claude-code
Nuxt 4 Patterns Use when building or debugging Nuxt 4 apps with SSR, hybrid rendering, route rules, or page-level data fetching. When to Activate Hydration mismatches between server HTML and client state Route-level rendering decisions such as prerender, SWR, ISR, or client-only sections Performance work around lazy loading, lazy hydration, or payload size Page or component data fetching with useFetch , useAsyncData , or $fetch Nuxt routing issues tied to route params, middleware, or SSR/client ...
3.9K
1985 golang-modernize samber/cc-skills-golang
Persona: You are a Go modernization engineer. You keep codebases current with the latest Go idioms and standard library improvements — you prioritize safety and correctness fixes first, then readability, then gradual improvements. Modes: Inline mode (developer is actively coding): suggest only modernizations relevant to the current file or feature; mention other opportunities you noticed but do not touch unrelated files. Full-scan mode (explicit /golang-modernize invocation or CI): use up to 5 p...
3.9K
1986 ljg-card lijigang/ljg-skills
ljg-card: 铸 将内容铸成可见的形态。内容进去,PNG 出来。模具决定形状。 参数 参数 模具 尺寸 说明 -l (默认) 长图 1080 x auto 单张阅读卡,内容自动撑高 -i 信息图 1080 x auto 内容驱动的自适应视觉布局 -m 多卡 1080 x 1440 自动切分为多张阅读卡片 -v 视觉笔记 1080 x auto 手绘风格 sketchnote,动态选择风格路线 -c 漫画 1080 x auto 日式黑白漫画风格,动态选择漫画家视觉语言 -w 白板 1080 x auto 白板马克笔风格,结构化框图+箭头+彩色标记 -b 大字 1080 x 1440 碑刻大字 + 和紙 + 外阴影,小红书附件风格(单句/短段) 约束 本 skill 输出为视觉文件(PNG),不适用 L0 中的 Org-mode、Denote 和 ASCII-only 规范。 共享基础 获取内容 URL --> WebFetch 获取 粘贴文本 --> 直接使用 文件路径 --> Read 获取 文件命名 从内容提取标题或核心思想作为 {name} (中文直接用,去标点,≤ 20 ...
3.9K
1987 golang-popular-libraries samber/cc-skills-golang
Persona: You are a Go ecosystem expert. You know the library landscape well enough to recommend the simplest production-ready option — and to tell the developer when the standard library is already enough. Go Libraries and Frameworks Recommendations Core Philosophy When recommending libraries, prioritize: Production-readiness - Mature, well-maintained libraries with active communities Simplicity - Go's philosophy favors simple, idiomatic solutions Performance - Libraries that leverage Go's stren...
3.9K
1988 academic-paper imbad0202/academic-research-skills
Academic Paper — Academic Paper Writing Agent Team A general-purpose academic paper writing tool — 12-agent pipeline covering all disciplines, with higher education domain as the default reference. v2.5 adds two writing quality features: Style Calibration (intake Step 10, optional) — Provide 3+ past papers and the pipeline learns your writing voice (sentence rhythm, vocabulary preferences, citation integration style). Applied as a soft guide during drafting; discipline conventions always take pr...
3.9K
1989 elestio elestio/elestio-skill
Elestio Skill Version: 2.0 Purpose: Deploy and manage services on Elestio DevOps platform Status: Ready to use Last Updated: 2026-02-19 Elestio is a fully managed DevOps platform. Dedicated VMs (not shared Kubernetes). 400+ open-source templates, 9 cloud providers, 100+ regions. Handles deployment, security, updates, backups, monitoring, support. This skill uses the official Elestio CLI ( elestio command, installed via npm install -g elestio ). When to Use This Skill Use this skill when: User wa...
3.9K
1990 golang-project-layout samber/cc-skills-golang
Persona: You are a Go project architect. You right-size structure to the problem — a script stays flat, a service gets layers only when justified by actual complexity. Go Project Layout Architecture Decision: Ask First When starting a new project, ask the developer what software architecture they prefer (clean architecture, hexagonal, DDD, flat structure, etc.). NEVER over-structure small projects — a 100-line CLI tool does not need layers of abstractions or dependency injection. → See samber/cc...
3.9K
1991 golang-troubleshooting samber/cc-skills-golang
Persona: You are a Go systems debugger. You follow evidence, not intuition — instrument, reproduce, and trace root causes systematically. Thinking mode: Use ultrathink for debugging and root cause analysis. Rushed reasoning leads to symptom fixes — deep thinking finds the actual root cause. Modes: Single-issue debug (default): Follow the sequential Golden Rules — read the error, reproduce, one hypothesis at a time. Do not launch sub-agents; focused sequential investigation is faster for a single...
3.9K
1992 design-system affaan-m/everything-claude-code
Design System — Generate & Audit Visual Systems When to Use Starting a new project that needs a design system Auditing an existing codebase for visual consistency Before a redesign — understand what you have When the UI looks "off" but you can't pinpoint why Reviewing PRs that touch styling How It Works Mode 1: Generate Design System Analyzes your codebase and generates a cohesive design system: Show more
3.9K
1993 golang-lint samber/cc-skills-golang
Persona: You are a Go code quality engineer. You treat linting as a first-class part of the development workflow — not a post-hoc cleanup step. Modes: Setup mode — configuring .golangci.yml , choosing linters, enabling CI: follow the configuration and workflow sections sequentially. Coding mode — writing new Go code: launch a background agent running golangci-lint run --fix on the modified files only while the main agent continues implementing the feature; surface results when it completes. Inte...
3.9K
1994 source-driven-development addyosmani/agent-skills
Source-Driven Development Overview Every framework-specific code decision must be backed by official documentation. Don't implement from memory — verify, cite, and let the user see your sources. Training data goes stale, APIs get deprecated, best practices evolve. This skill ensures the user gets code they can trust because every pattern traces back to an authoritative source they can check. When to Use The user wants code that follows current best practices for a given framework Building boiler...
3.9K
1995 n8n-validation-expert czlonkowski/n8n-skills
n8n Validation Expert Expert guide for interpreting and fixing n8n validation errors. Validation Philosophy Validate early, validate often Validation is typically iterative: Expect validation feedback loops Usually 2-3 validate → fix cycles Average: 23s thinking about errors, 58s fixing them Key insight: Validation is an iterative process, not one-shot! Error Severity Levels 1. Errors (Must Fix) Blocks workflow execution - Must be resolved before activation Types: missing_required - Re...
3.9K
1996 rust-engineer jeffallan/claude-skills
Rust Engineer Senior Rust engineer with deep expertise in Rust 2021 edition, systems programming, memory safety, and zero-cost abstractions. Specializes in building reliable, high-performance software leveraging Rust's ownership system. Role Definition You are a senior Rust engineer with 10+ years of systems programming experience. You specialize in Rust's ownership model, async programming with tokio, trait-based design, and performance optimization. You build memory-safe, concurrent systems...
3.9K
1997 academic-paper-reviewer imbad0202/academic-research-skills
Academic Paper Reviewer v1.4 — Multi-Perspective Academic Paper Review Agent Team Simulates a complete international journal peer review process: automatically identifies the paper's field, dynamically configures 5 reviewers (Editor-in-Chief + 3 peer reviewers + Devil's Advocate) who review from four non-overlapping perspectives — methodology, domain expertise, cross-disciplinary viewpoints, and core argument challenges — ultimately producing a structured Editorial Decision and Revision Roadmap....
3.9K
1998 stop-slop hardikpandya/stop-slop
Stop Slop Eliminate predictable AI writing patterns from prose. Core Rules Cut filler phrases. Remove throat-clearing openers and emphasis crutches. See references/phrases.md. Break formulaic structures. Avoid binary contrasts, dramatic fragmentation, rhetorical setups. See references/structures.md. Vary rhythm. Mix sentence lengths. Two items beat three. End paragraphs differently. Trust readers. State facts directly. Skip softening, justification, hand-holding. Cut quotables. If it soun...
3.9K
1999 database-schema-designer softaworks/agent-toolkit
Database Schema Designer Design production-ready database schemas with best practices built-in. Quick Start Just describe your data model: design a schema for an e-commerce platform with users, products, orders You'll get a complete SQL schema like: CREATE TABLE users ( id BIGINT AUTO_INCREMENT PRIMARY KEY , email VARCHAR ( 255 ) UNIQUE NOT NULL , created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) ; CREATE TABLE orders ( id BIGINT AUTO_INCREMENT PRIMARY KEY , user_id BIGINT NOT NULL REFERENCES use...
3.8K
2000 backtesting-trading-strategies jeremylongshore/claude-code-plugins-plus-skills
Backtesting Trading Strategies Overview Validate trading strategies against historical data before risking real capital. This skill provides a complete backtesting framework with 8 built-in strategies, comprehensive performance metrics, and parameter optimization. Key Features: 8 pre-built trading strategies (SMA, EMA, RSI, MACD, Bollinger, Breakout, Mean Reversion, Momentum) Full performance metrics (Sharpe, Sortino, Calmar, VaR, max drawdown) Parameter grid search optimization Equity curve vis...
3.8K