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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,408
总 Skills
88.0M
总安装量
2,574
贡献者
# Skill 仓库 描述 安装量
1951 ffmpeg digitalsamba/claude-code-video-toolkit
FFmpeg for Video Production FFmpeg is the essential tool for video/audio processing. This skill covers common operations for Remotion video projects. Quick Reference GIF to MP4 (Remotion-compatible) ffmpeg -i input.gif -movflags faststart -pix_fmt yuv420p \ -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" output.mp4 Why these flags: -movflags faststart - Moves metadata to start for web streaming -pix_fmt yuv420p - Ensures compatibility with most players scale=trunc(...) - Forces even dimensions (r...
4K
1952 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
1953 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
1954 landing-page-copywriter onewave-ai/claude-skills
Landing Page Copywriter Create high-converting landing page copy using proven copywriting frameworks. Instructions When a user needs landing page copy or marketing website content: Gather Product/Service Information: What product/service are you selling? Who is your target audience? What problem does it solve? What makes it unique (competitive advantage)? What action do you want visitors to take? Any social proof, testimonials, or data points? Choose Copywriting Framework: PAS (Problem-Ag...
4K
1955 threejs-materials cloudai-x/threejs-skills
Three.js Materials Quick Start import * as THREE from "three"; // PBR material (recommended for realistic rendering) const material = new THREE.MeshStandardMaterial({ color: 0x00ff00, roughness: 0.5, metalness: 0.5, }); const mesh = new THREE.Mesh(geometry, material); Material Types Overview Material Use Case Lighting MeshBasicMaterial Unlit, flat colors, wireframes No MeshLambertMaterial Matte surfaces, performance Yes (diffuse only) MeshPhongMaterial Shiny surfaces, specular highlight...
4K
1956 migrate-oxlint oxc-project/oxc
This skill guides you through migrating a JavaScript/TypeScript project from ESLint to Oxlint . Overview Oxlint is a high-performance linter that implements many popular ESLint rules natively in Rust. It can be used alongside ESLint or as a full replacement. An official migration tool is available: @oxlint/migrate Step 1: Run Automated Migration Run the migration tool in the project root: npx @oxlint/migrate This reads your ESLint flat config and generates a .oxlintrc.json file. Key Options Opti...
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 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
1967 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
1968 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...
3.9K
1969 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
1970 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...
3.9K
1971 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....
3.9K
1972 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
1973 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
1974 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
1975 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
1976 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
1977 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...
3.9K
1978 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
1979 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
1980 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
1981 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
1982 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 ...
3.9K
1983 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
1984 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
1985 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
1986 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
1987 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
1988 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
1989 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
1990 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
1991 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 ...
3.9K
1992 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
1993 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
1994 skill-judge softaworks/agent-toolkit
Skill Judge Evaluate Agent Skills against official specifications and patterns derived from 17+ official examples. Core Philosophy What is a Skill? A Skill is NOT a tutorial. A Skill is a knowledge externalization mechanism . Traditional AI knowledge is locked in model parameters. To teach new capabilities: Traditional: Collect data → GPU cluster → Train → Deploy new version Cost: $10,000 - $1,000,000+ Timeline: Weeks to months Skills change this: Skill: Edit SKILL.md → Save → Takes effect on ne...
3.8K
1995 agent-md-refactor softaworks/agent-toolkit
Agent MD Refactor Refactor bloated agent instruction files (AGENTS.md, CLAUDE.md, COPILOT.md, etc.) to follow progressive disclosure principles - keeping essentials at root and organizing the rest into linked, categorized files. Triggers Use this skill when: "refactor my AGENTS.md" / "refactor my CLAUDE.md" "split my agent instructions" "organize my CLAUDE.md file" "my AGENTS.md is too long" "progressive disclosure for my instructions" "clean up my agent config" Quick Reference Phase Action Outp...
3.8K
1996 building-ai-agent-on-cloudflare cloudflare/skills
Building Cloudflare Agents Creates AI-powered agents using Cloudflare's Agents SDK with persistent state, real-time communication, and tool integration. When to Use User wants to build an AI agent or chatbot User needs stateful, real-time AI interactions User asks about the Cloudflare Agents SDK User wants scheduled tasks or background AI work User needs WebSocket-based AI communication Prerequisites Cloudflare account with Workers enabled Node.js 18+ and npm/pnpm/yarn Wrangler CLI (npm instal...
3.8K
1997 crafting-effective-readmes softaworks/agent-toolkit
Crafting Effective READMEs Overview READMEs answer questions your audience will have. Different audiences need different information - a contributor to an OSS project needs different context than future-you opening a config folder. Always ask: Who will read this, and what do they need to know? Process Step 1: Identify the Task Ask: "What README task are you working on?" Task When Creating New project, no README yet Adding Need to document something new Updating Capabilities changed, content is s...
3.8K
1998 session-handoff softaworks/agent-toolkit
Handoff Creates comprehensive handoff documents that enable fresh AI agents to seamlessly continue work with zero ambiguity. Solves the long-running agent context exhaustion problem. Mode Selection Determine which mode applies: Creating a handoff? User wants to save current state, pause work, or context is getting full. Follow: CREATE Workflow below Resuming from a handoff? User wants to continue previous work, load context, or mentions an existing handoff. Follow: RESUME Workflow below Proactiv...
3.8K
1999 commit-work softaworks/agent-toolkit
Commit work Goal Make commits that are easy to review and safe to ship: only intended changes are included commits are logically scoped (split when needed) commit messages describe what changed and why Inputs to ask for (if missing) Single commit or multiple commits? (If unsure: default to multiple small commits when there are unrelated changes.) Commit style: Conventional Commits are required. Any rules: max subject length, required scopes. Workflow (checklist) Inspect the working tree before s...
3.8K
2000 marp-slide softaworks/agent-toolkit
Marp Slide Creator Create professional, visually appealing Marp presentation slides with 7 pre-designed themes and built-in best practices. When to Use This Skill Use this skill when the user: Requests to create presentation slides or Marp documents Asks to "make slides look good" or "improve slide design" Provides vague instructions like "良い感じにして" (make it nice) or "かっこよく" (make it cool) Wants to create lecture or seminar materials Needs bullet-point focused slides with occasional images Quick ...
3.8K