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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,447
总 Skills
90.4M
总安装量
2,580
贡献者
# Skill 仓库 描述 安装量
3751 md-docs paulrberg/agent-skills
Markdown Documentation Management Overview Manage project documentation for Claude Code workflows including context files, READMEs, and agent instructions. This skill provides structured automation for maintaining accurate, up-to-date documentation that aligns with actual codebase structure and functionality. Use this skill when initializing new projects, updating existing documentation, or ensuring context files accurately reflect current code. The skill emphasizes verification and validation o...
1.6K
3752 second-brain-lint nicholasspisak/second-brain
Second Brain — Lint Health-check the wiki and report issues with actionable fixes. Audit Steps Run all checks below, then present a consolidated report. 1. Broken wikilinks Scan all wiki pages for [[wikilink]] references. For each link, verify the target page exists. Report any broken links. Find all wikilinks across wiki pages grep -roh '\[\[[^]]*\]\]' wiki/ | sort -u Cross-reference against actual files in wiki/ . 2. Orphan pages Find pages with no inbound links — no other page references the...
1.6K
3753 market-pulse eronred/aso-skills
Market Pulse You are an expert in App Store market analysis. Your goal is to provide a comprehensive market overview by combining multiple data signals: chart movements, trending keywords, featured apps, new releases, and category dynamics. Initial Assessment Check for app-marketing-context.md — read it for the user's app, category, and competitors Ask for scope : entire App Store or specific category Ask for country (default: US) Ask for format : quick briefing (default), detailed report, or co...
1.6K
3754 python-backend jiatastic/open-python-skills
python-backend Production-ready Python backend patterns for FastAPI, SQLAlchemy, and Upstash. When to Use This Skill Building REST APIs with FastAPI Implementing JWT/OAuth2 authentication Setting up SQLAlchemy async databases Integrating Redis/Upstash caching and rate limiting Refactoring AI-generated Python code Designing API patterns and project structure Core Principles Async-first - Use async/await for I/O operations Type everything - Pydantic models for validation Dependency injection - Use...
1.6K
3755 core vercel-labs/json-render
@json-render/core Core package for schema definition, catalog creation, and spec streaming. Key Concepts Schema : Defines the structure of specs and catalogs (use defineSchema ) Catalog : Maps component/action names to their definitions (use defineCatalog ) Spec : JSON output from AI that conforms to the schema SpecStream : JSONL streaming format for progressive spec building Defining a Schema import { defineSchema } from "@json-render/core" ; export const schema = defineSchema ( ( s ) => ( { sp...
1.6K
3756 reviewing-oracle-to-postgres-migration github/awesome-copilot
Oracle-to-PostgreSQL Database Migration Surfaces migration risks and validates migration work against known Oracle/PostgreSQL behavioral differences documented in the references/ folder. When to use Planning — Before starting migration work on a procedure, trigger, query, or refcursor client. Identify which reference insights apply so risks are addressed up front. Validating — After migration work is done, confirm every applicable insight was addressed and integration tests cover the new Postgre...
1.6K
3757 migrating-oracle-to-postgres-stored-procedures github/awesome-copilot
Migrating Stored Procedures from Oracle to PostgreSQL Translate Oracle PL/SQL stored procedures and functions to PostgreSQL PL/pgSQL equivalents. Workflow Progress: - [ ] Step 1: Read the Oracle source procedure - [ ] Step 2: Translate to PostgreSQL PL/pgSQL - [ ] Step 3: Write the migrated procedure to Postgres output directory Step 1: Read the Oracle source procedure Read the Oracle stored procedure from .github/oracle-to-postgres-migration/DDL/Oracle/Procedures and Functions/ . Consult the Or...
1.6K
3758 create-an-asset anthropics/knowledge-work-plugins
Create an Asset Generate custom sales assets tailored to your prospect, audience, and goals. Supports interactive landing pages, presentation decks, executive one-pagers, and workflow/architecture demos. Triggers Invoke this skill when: User says /create-an-asset or /create-an-asset [CompanyName] User asks to "create an asset", "build a demo", "make a landing page", "mock up a workflow" User needs a customer-facing deliverable for a sales conversation Overview This skill creates professional sal...
1.6K
3759 discover-brand anthropics/knowledge-work-plugins
Brand Discovery Orchestrate autonomous discovery of brand materials across enterprise platforms. This skill coordinates the discover-brand agent to search connected platforms (Notion, Confluence, Google Drive, Box, Microsoft 365, Figma, Gong, Granola, Slack), triage sources, and produce a structured discovery report with open questions. Discovery Workflow 0. Orient the User Before starting, briefly explain what's about to happen so the user knows what to expect: "Here's how brand discovery works...
1.6K
3760 designing-growth-loops refoundai/lenny-skills
Designing Growth Loops Help the user design effective growth loops using frameworks from 54 product leaders who have built viral and product-led growth engines at companies from Dropbox to LinkedIn to Calendly. How to Help When the user asks for help with growth loops: Identify the loop type - Determine if they need viral, paid, content, or product-led acquisition loops Assess prerequisites - Check if they have the LTV, network effects, or product stickiness to support the loop Find the natural ...
1.6K
3761 python-best-practices 0xbigboss/claude-code
Python Best Practices Type-First Development Types define the contract before implementation. Follow this workflow: Define data models - dataclasses, Pydantic models, or TypedDict first Define function signatures - parameter and return type hints Implement to satisfy types - let the type checker guide completeness Validate at boundaries - runtime checks where data enters the system Make Illegal States Unrepresentable Use Python's type system to prevent invalid states at type-check time. Data...
1.6K
3762 product-strategy-session deanpeters/product-manager-skills
Purpose Guide product managers through a comprehensive product strategy session by orchestrating positioning, problem framing, customer discovery, and roadmap planning skills into a cohesive end-to-end process. Use this to move from vague strategic direction to concrete, validated product strategy with clear positioning, target customers, problem statements, and prioritized roadmap—ensuring alignment across stakeholders before committing to execution. This is not a one-time workshop—it's a repea...
1.6K
3763 compliance-tracking anthropics/knowledge-work-plugins
Compliance Tracking Help track compliance requirements, prepare for audits, and maintain regulatory readiness. Common Frameworks Framework Focus Key Requirements SOC 2 Service organizations Security, availability, processing integrity, confidentiality, privacy ISO 27001 Information security Risk assessment, security controls, continuous improvement GDPR Data privacy (EU) Consent, data rights, breach notification, DPO HIPAA Healthcare data (US) PHI protection, access controls, audit trails PCI DS...
1.6K
3764 asc-crash-triage rudrankriyam/app-store-connect-cli-skills
asc crash triage Use this skill to fetch, analyze, and summarize TestFlight crash reports, beta feedback, and performance diagnostics. Workflow Resolve the app ID if not provided (use asc apps list ). Fetch data with the appropriate command. Parse JSON output and present a human-readable summary. TestFlight crash reports List recent crashes (newest first): asc crashes --app "APP_ID" --sort -createdDate --limit 10 Filter by build: asc crashes --app "APP_ID" --build "BUILD_ID" --sort -createdDate ...
1.6K
3765 senior-frontend davila7/claude-code-templates
Senior Frontend Complete toolkit for senior frontend with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Component Generator python scripts/component_generator.py [ options ] Script 2: Bundle Analyzer python scripts/bundle_analyzer.py [ options ] Script 3: Frontend Scaffolder python scripts/frontend_scaffolder.py [ options ] Core Capabilities 1. Component Generator Automated tool for component gen...
1.6K
3766 market-movers eronred/aso-skills
Market Movers Analysis You are an expert in App Store chart dynamics. Your goal is to analyze rank changes between chart snapshots, identify significant movements, and provide actionable insights about what's driving gains and losses. Initial Assessment Check for app-marketing-context.md — read it for the user's app and category Ask for chart type : top-free (default), top-paid, or top-grossing Ask for category : all charts or specific genre (e.g. Games, Productivity) Ask for country (default: U...
1.6K
3767 create-cowork-plugin anthropics/knowledge-work-plugins
Create Cowork Plugin Build a new plugin from scratch through guided conversation. Walk the user through discovery, planning, design, implementation, and packaging — delivering a ready-to-install .plugin file at the end. Overview A plugin is a self-contained directory that extends Claude's capabilities with commands, skills, agents, hooks, and MCP server integrations. This skill encodes the full plugin architecture and a five-phase workflow for creating one conversationally. The process: Discover...
1.6K
3768 guideline-generation anthropics/knowledge-work-plugins
Guideline Generation Generate comprehensive, LLM-ready brand voice guidelines from any combination of sources — brand documents, sales call transcripts, discovery reports, or direct user input. Transform raw materials into structured, enforceable guidelines with confidence scoring and open questions. Inputs Accept any combination of: Discovery report from the discover-brand skill (structured, pre-triaged) Brand documents uploaded or from connected platforms (PDF, PPTX, DOCX, MD, TXT) Conversatio...
1.6K
3769 recruiting-pipeline anthropics/knowledge-work-plugins
Recruiting Pipeline Help manage the recruiting pipeline from sourcing through offer acceptance. Pipeline Stages Stage Description Key Actions Sourced Identified and reached out Personalized outreach Screen Phone/video screen Evaluate basic fit Interview On-site or panel interviews Structured evaluation Debrief Team decision Calibrate feedback Offer Extending offer Comp package, negotiation Accepted Offer accepted Transition to onboarding Metrics to Track Pipeline velocity : Days per stage Conver...
1.6K
3770 atxp atxp-dev/cli
ATXP Tools Access ATXP's paid API tools via CLI. Authentication Check if authenticated echo $ATXP_CONNECTION If not set, login: npx atxp login source ~/.atxp/config Commands Command Description npx atxp search <query> Real-time web search npx atxp image <prompt> AI image generation npx atxp music <prompt> AI music generation npx atxp video <prompt> AI video generation npx atxp x <query> X/Twitter search PaaS Tools Deploy serverless applications with functions, databases, object storage, c...
1.6K
3771 contact-research anthropics/knowledge-work-plugins
Contact Research Retrieve a comprehensive contact profile from Common Room. Supports lookup by email, social handle, or name + company. Returns enriched data including activity history, Spark, scores, website visits, and CRM fields. Step 1: Locate the Contact Common Room supports multiple lookup methods — use whichever the user has provided: What the user gives Lookup method Email address Look up by email (most reliable) LinkedIn, Twitter/X, or GitHub handle Look up by social handle — specify ha...
1.6K
3772 deep-research bytedance/deer-flow
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
1.6K
3773 close-management anthropics/knowledge-work-plugins
Close Management Important : This skill assists with close management workflows but does not provide financial advice. All close activities should be reviewed by qualified financial professionals. Month-end close checklist, task sequencing and dependencies, status tracking, and common close activities organized by day. Month-End Close Checklist Pre-Close (Last 2-3 Business Days of the Month) Send close calendar and deadline reminders to all contributors Confirm cut-off procedures with AP, AR, pa...
1.6K
3774 bump-release paulrberg/agent-skills
Bump Release Support for both regular and beta releases. Parameters version : Optional explicit version to use (e.g., 2.0.0 ). When provided, skips automatic version inference --beta : Create a beta release with -beta.X suffix --dry-run : Preview the release without making any changes (no file modifications, commits, or tags) Steps Locate the package - The user may be in a monorepo where the package to release lives in a subdirectory. Look for package.json in the current working directory first;...
1.6K
3775 cowork-plugin-customizer anthropics/knowledge-work-plugins
Cowork Plugin Customization Customize a plugin for a specific organization — either by setting up a generic plugin template for the first time, or by tweaking and refining an already-configured plugin. Finding the plugin : To find the plugin's source files, run find mnt/.local-plugins mnt/.plugins -type d -name "*<plugin-name>*" to locate the plugin directory, then read its files to understand its structure before making changes. If you cannot find the plugin directory, the user is likely runnin...
1.6K
3776 compose-outreach anthropics/knowledge-work-plugins
Compose Outreach Generate three personalized outreach formats — email, call script, and LinkedIn message — grounded in Common Room signals for a specific company or contact. Outreach Process Step 1: Look Up the Target Use Common Room MCP tools to find and retrieve data for the target (company and/or specific contact). Pull: Recent product activity and engagement signals Community activity (posts, questions, reactions) 3rd-party intent signals (job postings, news, funding) Relationship history (p...
1.6K
3777 synthesize-research anthropics/knowledge-work-plugins
Synthesize Research If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Synthesize user research from multiple sources into structured insights and recommendations. Usage /synthesize-research $ARGUMENTS Workflow 1. Gather Research Inputs Accept research from any combination of: Pasted text : Interview notes, transcripts, survey responses, feedback Uploaded files : Research documents, spreadsheets, recordings summaries ~~knowledge base (if connected)...
1.6K
3778 roadmap-update anthropics/knowledge-work-plugins
Roadmap Update If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Update, create, or reprioritize a product roadmap. Usage /roadmap-update $ARGUMENTS Workflow 1. Understand Current State If ~~project tracker is connected: Pull current roadmap items with their statuses, assignees, and dates Identify items that are overdue, at risk, or recently completed Surface any items without clear owners or dates If no project management tool is connected: Ask t...
1.6K
3779 daily-stock-analysis aradotso/trending-skills
Daily Stock Analysis (股票智能分析系统) Skill by ara.so — Daily 2026 Skills collection. LLM-powered stock analysis system for A-share, Hong Kong, and US markets. Automatically fetches quotes, news, and fundamentals, generates AI decision dashboards with buy/sell targets, and pushes results to WeChat/Feishu/Telegram/Discord/Email on a schedule via GitHub Actions — zero server cost. What It Does AI Decision Dashboard : One-line conclusion + precise buy/sell/stop-loss prices + checklist per stock Multi-mar...
1.6K
3780 technical-analysis omer-metin/skills-for-antigravity
Technical Analysis Identity Role: Technical Analysis Grandmaster Voice: A trader who's spent 20,000+ hours staring at charts across forex, equities, crypto, and commodities. Speaks with the precision of Richard Wyckoff, the pattern recognition of Thomas Bulkowski, and the skepticism of a quant who backtests everything. Believes technicals work because they reflect human psychology, but knows most retail TA is astrology with extra steps. Expertise: Classical charting (Dow Theory, Wyckoff Meth...
1.6K
3781 vectorbt-expert marketcalls/vectorbt-backtesting-skills
VectorBT Backtesting Expert Skill Environment Python with vectorbt, pandas, numpy, plotly Data sources: OpenAlgo (Indian markets), DuckDB (direct database), yfinance (US/Global), CCXT (Crypto), custom providers DuckDB support: supports both custom DuckDB and OpenAlgo Historify format API keys loaded from single root .env via python-dotenv + find_dotenv() — never hardcode keys Technical indicators: TA-Lib (ALWAYS - never use VectorBT built-in indicators) Specialty indicators: openalgo.ta for Supe...
1.6K
3782 swift-codable dpearson2699/swift-ios-skills
Swift Codable Encode and decode Swift types using Codable ( Encodable & Decodable ) with JSONEncoder , JSONDecoder , and related APIs. Targets Swift 6.3 / iOS 26+. Contents Basic Conformance Custom CodingKeys Custom Decoding and Encoding Nested and Flattened Containers Heterogeneous Arrays Date Decoding Strategies Data and Key Strategies Lossy Array Decoding Single Value Containers Default Values for Missing Keys Encoder and Decoder Configuration Codable with URLSession Codable with SwiftData Co...
1.6K
3783 day2-create-context-sync-skill ai-native-camp/camp-1
Day 2: 나만의 Context Sync 스킬 만들기 이 스킬이 호출되면 아래 STOP PROTOCOL 을 반드시 따른다. 용어 정리 이 스킬에서 사용하는 핵심 용어: 용어 설명 MCP Claude가 외부 서비스(Slack, Gmail 등)와 대화하는 통로. Day 1에서 배운 "도구"를 외부로 확장하는 것 subagent Claude가 다른 Claude를 불러서 일을 시키는 것. 여러 일을 동시에 처리할 때 사용 Explore 에이전트 프로젝트 폴더 구조를 파악해주는 전문 subagent API 서비스가 제공하는 데이터 창구. MCP가 없을 때 직접 코드로 데이터를 가져오는 방법 스킬(Skill) Claude Code에게 특정 작업 방법을 가르치는 문서. Day 1 Block 3-2에서 체험한 것 STOP PROTOCOL — 절대 위반 금지 이 프로토콜은 이 스킬의 최우선 규칙이다. 아래 규칙을 위반하면 수업이 망가진다. 각 블록은 반드시 2턴에 걸쳐 진행한다 ┌─ Phase A...
1.6K
3784 frontend-design mager/frontend-design
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
1.6K
3785 designing-beautiful-websites tristanmanchester/agent-skills
Designing Beautiful Websites Core philosophy: Make the next action obvious. Build from user goals upward. Systemise visuals. Validate early. Why this exists Websites fail when they look “nice” but: don’t match user goals, hide key actions, require too much thinking, or are visually inconsistent. This skill turns vague requests like “make it look better” into a repeatable workflow that produces: clear structure, usable interactions, and a cohesive visual system. What “done” looks like Deliverable...
1.6K
3786 wordpress-elementor jezweb/claude-skills
WordPress Elementor Edit Elementor pages and manage templates on existing WordPress sites. Produces updated page content via browser automation (for visual/structural changes) or WP-CLI (for safe text replacements). Prerequisites Working WP-CLI connection or admin access (use wordpress-setup skill) Elementor installed and active: wp @site plugin status elementor Workflow Step 1: Identify the Page Find the page to edit: List Elementor pages (pages with _elementor_data meta) wp @site post list --...
1.6K
3787 skill-forge sanyuan0704/sanyuan-skills
Skill Forge IRON LAW: Every line in a skill must justify its token cost. If it doesn't make the model's output better, more consistent, or more reliable — cut it. What is a Skill A skill is an "onboarding guide" for Claude — transforming it from a general-purpose agent into a specialized one with procedural knowledge, domain expertise, and bundled tools. skill-name/ ├── SKILL.md Required: workflow + instructions (<500 lines) ├── scripts/ Optional: deterministic, repeatable ...
1.6K
3788 org-planning anthropics/knowledge-work-plugins
Org Planning Help plan organizational structure, headcount, and team design. Planning Dimensions Headcount : How many people do we need, in what roles, by when? Structure : Reporting lines, span of control, team boundaries Sequencing : Which hires are most critical? What's the right order? Budget : Headcount cost modeling and trade-offs Healthy Org Benchmarks Metric Healthy Range Warning Sign Span of control 5-8 direct reports < 3 or > 12 Management layers 4-6 for 500 people Too many = slow deci...
1.6K
3789 enrich-lead anthropics/knowledge-work-plugins
Enrich Lead Turn any identifier into a full contact dossier. The user provides identifying info via "$ARGUMENTS". Examples /apollo:enrich-lead Tim Zheng at Apollo /apollo:enrich-lead https://www.linkedin.com/in/timzheng /apollo:enrich-lead sarah@stripe.com /apollo:enrich-lead Jane Smith, VP Engineering, Notion /apollo:enrich-lead CEO of Figma Step 1 — Parse Input From "$ARGUMENTS", extract every identifier available: First name, last name Company name or domain LinkedIn URL Email address Job tit...
1.6K
3790 technical-roadmaps refoundai/lenny-skills
Technical Roadmaps Help the user create effective technical roadmaps using frameworks and insights from 1 product leader. How to Help When the user asks for help with technical roadmaps: Understand the context - Ask about their current technical state, team size, and business constraints Ensure it's written down - A strategy that isn't documented can't be debugged or aligned around Apply the Rumelt framework - Structure as Diagnosis (what's the problem), Guiding Policies (principles for decision...
1.6K
3791 extract alirezarezvani/claude-skills
Identify reusable patterns, components, and design tokens, then extract and consolidate them into the design system for systematic reuse. Discover Analyze the target area to identify extraction opportunities: Find the design system : Locate your design system, component library, or shared UI directory (grep for "design system", "ui", "components", etc.). Understand its structure: Component organization and naming conventions Design token structure (if any) Documentation patterns Import/export co...
1.6K
3792 paperclip-create-plugin paperclipai/paperclip
Create a Paperclip Plugin Use this skill when the task is to create, scaffold, or document a Paperclip plugin. 1. Ground rules Read these first when needed: doc/plugins/PLUGIN_AUTHORING_GUIDE.md packages/plugins/sdk/README.md doc/plugins/PLUGIN_SPEC.md only for future-looking context Current runtime assumptions: plugin workers are trusted code plugin UI is trusted same-origin host code worker APIs are capability-gated plugin UI is not sandboxed by manifest capabilities no host-provided shared pl...
1.6K
3793 sprint-planning anthropics/knowledge-work-plugins
/sprint-planning If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Plan a sprint by scoping work, estimating capacity, and setting clear goals. Usage /sprint-planning $ARGUMENTS How It Works ┌─────────────────────────────────────────────────────────────────┐ │ SPRINT PLANNING │ ├─────────────────────────────────────────────────────────────────┤ │ STANDALONE (always works) ...
1.6K
3794 user-onboarding refoundai/lenny-skills
How to position Starchild Starchild is a personal assistant / intern with a full computer . Anything that can be done on a computer is in scope: browsing, reading, writing, coding, running scripts, connecting services, operating files, building tools, deploying pages, monitoring things, and pushing results back to the user. The honest positioning: Some things Starchild is already very good at — Twitter / X, Gmail, scheduled tasks, research, rapid prototyping, public deploys, database analytics, ...
1.6K
3795 mcp-vods aahl/skills
追剧/追番技能 通过 npx -y mcporter 连接 mcp-vods 在多个源站中搜索影视、动漫、短剧、综艺等节目信息或更新进度。 并支持通过配置可选的电视IP环境变量,实现投屏到电视上播放。 搜索工具 该工具需要在多个源站搜索,比较耗时,需要更多的超时时间,如果遇到超时,可以重新尝试。 npx -y mcporter call --stdio 'uvx mcp-vods' vods_search keyword="影视名称" npx -y mcporter call --stdio 'uvx mcp-vods' vods_search keyword="影视名称" page=2 小米电视投屏工具 需要配置环境变量 MITV_LOCAL_IP 或 MITV_LIST_CFG 才能使用此工具。 npx -y mcporter call --stdio 'uvx mcp-vods' mitv_play_media url="影视URL" addr="小米电视IP" 安卓电视投屏工具 需要配置环境变量 TVBOX_LOCAL_IP 或 TVBOX_LIST_CFG 并在电视上安装Tv...
1.6K
3796 game-ui-design omer-metin/skills-for-antigravity
Game Ui Design Identity You are a game UI designer who has shipped AAA titles and indie darlings alike. You've designed HUDs for 200-hour RPGs and 30-second arcade games. You understand that the health bar in Dark Souls tells a different story than the one in Overwatch, and you know why both are perfect for their contexts. You've debugged UI on 4K TVs viewed from couches and on Steam Decks held at arm's length. You've learned that what looks crisp in Figma becomes muddy on a CRT filter, and th...
1.6K
3797 promote alirezarezvani/claude-skills
/si:promote — Graduate Learnings to Rules Moves a proven pattern from Claude's auto-memory into the project's rule system, where it becomes an enforced instruction rather than a background note. Usage /si:promote <pattern description> Auto-detect best target /si:promote <pattern> --target claude.md Promote to CLAUDE.md /si:promote <pattern> --target rules/testing.md Promote to scoped rule /si:promote <pattern> --target rules/api.md --paths "src/api//*.ts" ...
1.6K
3798 bump-deps paulrberg/agent-skills
Bump Dependencies Skill Update Node.js dependencies using taze CLI with smart prompting: auto-apply MINOR/PATCH updates, prompt for MAJOR updates individually, skip fixed-version packages. When package names are provided as arguments (e.g. /bump-deps react typescript ), scope all taze commands to only those packages using --include . When --dry-run is passed (e.g. /bump-deps --dry-run or /bump-deps --dry-run react ), scan for updates and present a summary table without applying any changes . See...
1.6K
3799 typescript-magician mcollina/skills
When to use Use this skill proactively for: TypeScript errors and type challenges Eliminating any types from codebases Complex generics and type inference issues When strict typing is needed Instructions You are the Magician - a TypeScript wizard with Matt Pocock's deep expertise in advanced TypeScript patterns and type system mastery. You have zero tolerance for any types and specialize in crafting elegant, type-safe solutions. When invoked: Analyze TypeScript errors and diagnostics thoroughly ...
1.6K
3800 hermes-history-ingest ar9av/obsidian-wiki
Hermes History Ingest — Conversation & Memory Mining You are extracting knowledge from the user's Hermes agent history and distilling it into the Obsidian wiki. Hermes stores both free-form memories and structured session transcripts — focus on durable knowledge, not operational telemetry. This skill can be invoked directly or via the wiki-history-ingest router ( /wiki-history-ingest hermes ). Before You Start Read .env to get OBSIDIAN_VAULT_PATH and HERMES_HISTORY_PATH (default to ~/.hermes if ...
1.6K