███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8651 | github-explorer | blessonism/github-explorer-skill |
GitHub Explorer — 项目深度分析 Philosophy : README 只是门面,真正的价值藏在 Issues、Commits 和社区讨论里。 Workflow [项目名] → [1. 定位 Repo] → [2. 多源采集] → [3. 分析研判] → [4. 结构化输出] Phase 1: 定位 Repo 用 web_search 搜索 site:github.com <project_name> 确认完整 org/repo 用 search-layer (Deep 模式 + 意图感知)补充获取社区链接和非 GitHub 资源: python3 skills/search-layer/scripts/search.py \ --queries "<project_name> review" "<project_name> 评测 使用体验" \ --mode deep --intent exploratory --num 5 用 web_fetch 抓取 repo 主页获取基础信息(README、Stars、Forks、License、最近更新) Phase 2: ...
|
238 |
| 8652 | mintlify | mintlify/docs |
Mintlify reference Reference for building documentation with Mintlify. This file covers essentials that apply to every task. For detailed reference on specific topics, read the files listed in the reference index below. Reference index Read these files only when your task requires them . They are in the reference/ directory next to this file. To find them, look in the same directory as this skill file (e.g., .claude/skills/mintlify/reference/ ). File When to read reference/components.md Adding o...
|
238 |
| 8653 | modern-css | paulirish/dotfiles |
Modern CSS This skill provides a reference for writing modern, robust, and efficient CSS. Layout & Responsive Design Container Queries .card { container: --my-card / inline-size; } @container --my-card (width < 40ch) { /* Component-based responsive design */ } @container (20ch < width < 50ch) { /* Range syntax */ } Container units: cqi, cqb, cqw, cqh - size relative to container dimensions Anchored container queries: Style positioned elements based on anchor fallback state .tooltip...
|
238 |
| 8654 | fetch-tweet | opusgamelabs/game-creator |
Fetch Tweet X/Twitter URL에서 트윗 원문, 작성자 정보, 인게이지먼트 데이터를 가져오는 스킬. FxEmbed 오픈소스 프로젝트의 API ( api.fxtwitter.com )를 활용하여 JavaScript 없이 트윗 데이터를 추출한다. How It Works X/Twitter URL의 도메인을 api.fxtwitter.com 으로 변환하면 JSON으로 트윗 전체 데이터를 반환한다. https://x.com/user/status/123456 → https://api.fxtwitter.com/user/status/123456 Script scripts/fetch_tweet.py - 표준 라이브러리만 사용, 외부 의존성 없음. 기본 사용 (포맷팅된 출력) python scripts/fetch_tweet.py https://x.com/garrytan/status/2020072098635665909 JSON 출력 (프로그래밍 활용) python scripts/fetch...
|
238 |
| 8655 | llamaguard | davila7/claude-code-templates |
LlamaGuard - AI Content Moderation Quick start LlamaGuard is a 7-8B parameter model specialized for content safety classification. Installation: pip install transformers torch Login to HuggingFace (required) huggingface-cli login Basic usage: from transformers import AutoTokenizer, AutoModelForCausalLM model_id = "meta-llama/LlamaGuard-7b" tokenizer = AutoTokenizer.from_pretrained(model_id) model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto") def moderate(chat): ...
|
238 |
| 8656 | cocoindex | davila7/claude-code-templates |
CocoIndex Overview CocoIndex is an ultra-performant real-time data transformation framework for AI with incremental processing. This skill enables building indexing flows that extract data from sources, apply transformations (chunking, embedding, LLM extraction), and export to targets (vector databases, graph databases, relational databases). Core capabilities: Write indexing flows - Define ETL pipelines using Python Create custom functions - Build reusable transformation logic Operate flows ...
|
238 |
| 8657 | tdd-workflow | davila7/claude-code-templates |
Test-Driven Development Workflow This skill ensures all code development follows TDD principles with comprehensive test coverage. When to Activate Writing new features or functionality Fixing bugs or issues Refactoring existing code Adding API endpoints Creating new components Core Principles 1. Tests BEFORE Code ALWAYS write tests first, then implement code to make tests pass. 2. Coverage Requirements Minimum 80% coverage (unit + integration + E2E) All edge cases covered Error scenarios tested ...
|
238 |
| 8658 | pytest-patterns | manutej/luxor-claude-marketplace |
Pytest Patterns - Comprehensive Testing Guide A comprehensive skill for mastering Python testing with pytest. This skill covers everything from basic test structure to advanced patterns including fixtures, parametrization, mocking, test organization, coverage analysis, and CI/CD integration. When to Use This Skill Use this skill when: Writing tests for Python applications (web apps, APIs, CLI tools, libraries) Setting up test infrastructure for a new Python project Refactoring existing tests...
|
238 |
| 8659 | discord-bot-architect | davila7/claude-code-templates |
Discord Bot Architect Patterns Discord.js v14 Foundation Modern Discord bot setup with Discord.js v14 and slash commands When to use: ['Building Discord bots with JavaScript/TypeScript', 'Need full gateway connection with events', 'Building bots with complex interactions'] ```javascript // src/index.js const { Client, Collection, GatewayIntentBits, Events } = require('discord.js'); const fs = require('node:fs'); const path = require('node:path'); require('dotenv').config(); // Create client ...
|
238 |
| 8660 | vite-react-best-practices | claudiocebpaz/vite-react-best-practices |
Vite React Best Practices A senior-level guide for building production-ready React Single Page Applications (SPAs) with Vite. When to Apply Reference these guidelines when: Setting up a new Vite + React project Configuring build pipelines and CI/CD for SPAs Troubleshooting production build or caching issues Refactoring React components for performance Rule Categories 1. Vite SPA Deployment (CRITICAL) Static Rewrites - Mandatory for client-side routing. Caching Strategy - Immutable assets, no...
|
238 |
| 8661 | new-modular-project | modular/skills |
When the user wants to create a new project, first infer as many options as possible from the user's request (e.g., "new Mojo project" means type=Mojo, "called foo" means name=foo). Then use a structured multiple-choice prompt (not plain text) to gather only the remaining unspecified options in a single interaction. Do NOT ask about options the user has already provided or implied. The options to determine are: Project name — ask if not specified Type of project — Mojo or MAX (infer from context...
|
238 |
| 8662 | alicloud-platform-aliyun-cli-test | cinience/alicloud-skills |
Category: test 通用 aliyun CLI Minimal Viable Test Prerequisites aliyun CLI is installed. A valid profile is configured (default default ). GoalsSkill: skills/platform/cli/alicloud-platform-aliyun-cli/ 。 Test Steps Run version guard script: python skills/platform/cli/alicloud-platform-aliyun-cli/scripts/ensure_aliyun_cli.py --interval-hours 24 。 执行 aliyun version 。 执行 aliyun configure list 。 Run one read-only API (example): aliyun ecs DescribeRegions 。 Expected Results CLI executes and returns ver...
|
238 |
| 8663 | seo-snippet-hunter | sickn33/antigravity-awesome-skills |
Use this skill when Working on seo snippet hunter tasks or workflows Needing guidance, best practices, or checklists for seo snippet hunter Do not use this skill when The task is unrelated to seo snippet hunter 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...
|
238 |
| 8664 | git-pr-workflows-git-workflow | sickn33/antigravity-awesome-skills |
Complete Git Workflow with Multi-Agent Orchestration Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern git best practices including Conventional Commits, automated testing, and structured PR creation. [Extended thinking: This workflow coordinates multiple specialized agents to ensure code quality before commits are made. The code-reviewer agent perf...
|
238 |
| 8665 | langgraph-architecture | existential-birds/beagle |
LangGraph Architecture Decisions When to Use LangGraph Use LangGraph When You Need: Stateful conversations - Multi-turn interactions with memory Human-in-the-loop - Approval gates, corrections, interventions Complex control flow - Loops, branches, conditional routing Multi-agent coordination - Multiple LLMs working together Persistence - Resume from checkpoints, time travel debugging Streaming - Real-time token streaming, progress updates Reliability - Retries, error recovery, durability guarant...
|
238 |
| 8666 | finviz-screener | tradermonty/claude-trading-skills |
FinViz Screener Overview Translate natural-language stock screening requests into FinViz screener filter codes, build the URL, and open it in Chrome. No API key required for public screener; FINVIZ Elite is auto-detected from $FINVIZ_API_KEY for enhanced functionality. Key Features: Natural language → filter code mapping (Japanese + English) URL construction with view type and sort order selection Elite/Public auto-detection (environment variable or explicit flag) Chrome-first browser opening wi...
|
238 |
| 8667 | unsplash | cevatkerim/skills |
Unsplash Photo Search Search and fetch high-quality photos from Unsplash with automatic attribution. Quick Start Search for photos ./scripts/search.sh "sunset beach" Get random photos ./scripts/random.sh "nature" 3 Track download (when user downloads) ./scripts/track.sh PHOTO_ID Setup (Interactive) IMPORTANT: If the script returns UNSPLASH_ACCESS_KEY not set , handle it interactively: Ask the user: "I need an Unsplash API key to search for photos. You can get a free key at https://unsplash.co...
|
238 |
| 8668 | sop-creator | ognjengt/founder-skills |
SOP Creator Purpose Transform unstructured process descriptions into clear, actionable Standard Operating Procedures written at a 5th-grade reading level. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "sop-creator loaded, describe the process you want to document" Then wait for the user to provide their process description in the next message. If $ARGUMENTS contains content: Proceed immediately to Task Execution (skip th...
|
238 |
| 8669 | nextjs-16-complete-guide | fernandofuc/nextjs-claude-setup |
Next.js 16 Complete Guide Purpose Comprehensive reference for Next.js 16's revolutionary features: Cache Components with "use cache", stable Turbopack as default bundler, proxy.ts architecture, DevTools MCP integration, and React Compiler support. When to Use Starting new Next.js projects (use 16 from day one) Migrating from Next.js 15 to 16 Understanding Cache Components and Partial Pre-Rendering (PPR) Configuring Turbopack for optimal performance Migrating middleware.ts to proxy.ts Leveragin...
|
238 |
| 8670 | docs-seeker | mrgoonie/claudekit-skills |
Documentation Discovery & Analysis Overview Intelligent discovery and analysis of technical documentation through multiple strategies: llms.txt-first: Search for standardized AI-friendly documentation Repository analysis: Use Repomix to analyze GitHub repositories Parallel exploration: Deploy multiple Explorer agents for comprehensive coverage Fallback research: Use Researcher agents when other methods unavailable Core Workflow Phase 1: Initial Discovery Identify target Extract library/frame...
|
238 |
| 8671 | gpui-layout-and-style | longbridge/gpui-component |
Overview GPUI provides CSS-like styling with Rust type safety. Key Concepts: Flexbox layout system Styled trait for chaining styles Size units: px(), rems(), relative() Colors, borders, shadows Quick Start Basic Styling use gpui::*; div() .w(px(200.)) .h(px(100.)) .bg(rgb(0x2196F3)) .text_color(rgb(0xFFFFFF)) .rounded(px(8.)) .p(px(16.)) .child("Styled content") Flexbox Layout div() .flex() .flex_row() // or flex_col() for column .gap(px(8.)) .it...
|
238 |
| 8672 | substance-3d-texturing | freshtechbro/claudedesignskills |
Substance 3D Texturing Overview Master PBR (Physically Based Rendering) texture creation and export workflows for web and real-time engines. This skill covers Substance 3D Painter workflows from material creation through web-optimized texture export, with Python automation for batch processing and integration with WebGL/WebGPU engines. Key capabilities: PBR material authoring (metallic/roughness workflow) Web-optimized texture export (glTF, Three.js, Babylon.js) Python API automation for batch e...
|
238 |
| 8673 | aframe-webxr | freshtechbro/claudedesignskills |
A-Frame WebXR Skill When to Use This Skill Build VR/AR experiences with minimal JavaScript Create cross-platform WebXR applications (desktop, mobile, headset) Prototype 3D scenes quickly with HTML primitives Implement VR controller interactions Add 3D content to web pages declaratively Build 360° image/video experiences Develop AR experiences with hit testing Core Concepts 1. Entity-Component-System (ECS) A-Frame uses an entity-component-system architecture where: Entities are containers (like <...
|
238 |
| 8674 | a/b test analysis | aj-geddes/useful-ai-prompts | 238 | |
| 8675 | canary-deployment | aj-geddes/useful-ai-prompts |
Canary Deployment Overview Deploy new versions gradually to a small percentage of users, monitor metrics for issues, and automatically rollback or proceed based on predefined thresholds. When to Use Low-risk gradual rollouts Real-world testing with live traffic Automatic rollback on errors User impact minimization A/B testing integration Metrics-driven deployments High-traffic services Implementation Examples 1. Istio-based Canary Deployment canary-deployment-istio.yaml apiVersion: apps/v1 ki...
|
238 |
| 8676 | use-of-color | accesslint/claude-marketplace |
You are an expert accessibility analyzer specializing in WCAG 1.4.1 Use of Color (Level A) compliance. Your Role You analyze code to identify instances where color is used as the only visual means of conveying information, indicating an action, prompting a response, or distinguishing a visual element. WCAG 1.4.1 Use of Color - Level A Requirement : Color is not used as the only visual means of conveying information, indicating an action, prompting a response, or distinguishing a visual element. ...
|
238 |
| 8677 | git-master | josiahsiegel/claude-plugin-marketplace |
Git Mastery - Complete Git Expertise 🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes ( \ ) in file paths, NOT forward slashes ( / ). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER crea...
|
238 |
| 8678 | openclaude-multi-llm | aradotso/trending-skills |
OpenClaude Multi-LLM Skill Skill by ara.so — Daily 2026 Skills collection. OpenClaude is a fork of Claude Code that routes all LLM calls through an OpenAI-compatible shim ( openaiShim.ts ), letting you use any model that speaks the OpenAI Chat Completions API — GPT-4o, DeepSeek, Gemini via OpenRouter, Ollama, Groq, Mistral, Azure, and more — while keeping every Claude Code tool intact (Bash, FileRead, FileWrite, FileEdit, Glob, Grep, WebFetch, Agent, MCP, Tasks, LSP, NotebookEdit). Installation ...
|
238 |
| 8679 | ln-520-test-planner | 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. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: Story Resolution Chain. Status filter: To Review Test Planning Orchestrator Coordinates the complete test planning pipeline for a Story by delegating to specialized workers. Purpose & Scope Orchestrate test plann...
|
238 |
| 8680 | ln-510-quality-coordinator | 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. Quality Coordinator Sequential coordinator for code quality pipeline. Invokes workers (511 -> 512 -> 514), runs inline agent review in parallel with Phases 5-7, merges all results, and returns quality_verdict. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: St...
|
238 |
| 8681 | network-watcher | useai-pro/openclaw-skills-security |
Network Watcher You are a network security auditor for OpenClaw. When a skill requests network permission, you analyze what connections it makes and whether they are legitimate. Why Network Monitoring Matters Network access is the primary vector for data exfiltration. A skill that can read files AND make network requests can steal your source code, credentials, and environment variables by sending them to an external server. Pre-Install Network Audit Before a skill with network permission is ins...
|
238 |
| 8682 | video-marketing | dengineproblem/agents-monorepo |
Content: Video Marketing Guides video marketing strategy and script creation for short-form and long-form content. Short-form commands ~82% of internet traffic with 2.5× more engagement than long-form; 71% of viewers decide within 3 seconds whether to continue. Use this skill when planning video content, writing scripts, or optimizing for platforms. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On su...
|
238 |
| 8683 | feed-catchup | readwiseio/readwise-skills |
You are helping the user catch up on their Readwise Reader RSS feed. Follow this process carefully. Readwise Access Check if Readwise MCP tools are available (e.g. mcp__readwise__reader_list_documents ). If they are, use them throughout. If not, use the equivalent readwise CLI commands instead (e.g. readwise list , readwise read <id> , readwise move <id> <location> ). The instructions below reference MCP tool names — translate to CLI equivalents as needed. Setup IMPORTANT — do this in a single p...
|
238 |
| 8684 | codex | giuseppe-trisciuoglio/developer-kit |
Codex Skill Guide Running a Task Default to gpt-5.2 model. Ask the user (via AskUserQuestion ) which reasoning effort to use ( xhigh , high , medium , or low ). User can override model if needed (see Model Options below). Select the sandbox mode required for the task; default to --sandbox read-only unless edits or network access are necessary. Assemble the command with the appropriate options: -m, --model <MODEL> --config model_reasoning_effort="<high|medium|low>" --sandbox <read-only|workspace-...
|
238 |
| 8685 | geo-llmstxt | zubair-trabzada/geo-seo-claude |
llms.txt Standard Analysis and Generation Skill Purpose This skill handles everything related to the llms.txt standard -- an emerging convention (proposed by Jeremy Howard in September 2024, gaining adoption through 2025-2026) that allows websites to provide structured guidance to AI systems about their content, structure, and key information. It is analogous to robots.txt (which tells crawlers what NOT to access) but instead tells AI systems what IS most useful to understand about the site. Why...
|
238 |
| 8686 | safe-action-advanced | next-safe-action/skills |
next-safe-action Advanced Features Overview Feature Use Case Bind arguments Pass extra args to actions via .bind() (e.g., resource IDs) Metadata Attach typed metadata to actions for use in middleware Framework errors Handle redirect, notFound, forbidden, unauthorized in actions Type utilities Infer types from action functions and middleware Server-Level Action Callbacks The second argument to .action() accepts callbacks that run on the server (not client-side hooks): export const createPost = au...
|
238 |
| 8687 | jquery-4 | jezweb/claude-skills |
jQuery 4.0 Migration Status: Production Ready Last Updated: 2026-01-25 Dependencies: None Latest Versions: jquery@4.0.0, jquery-migrate@4.0.2 Quick Start (5 Minutes) 1. Add jQuery Migrate Plugin for Safe Testing Before upgrading, add the migrate plugin to identify compatibility issues: <!-- Development: Shows console warnings for deprecated features --> <script src="https://code.jquery.com/jquery-4.0.0.js"></script> <script src="https://code.jquery.com/jquery-migrate-4.0.2.js"></script> Wh...
|
237 |
| 8688 | todo-triage | everyinc/compound-engineering-plugin |
Todo Triage Interactive workflow for reviewing pending todos one by one and deciding whether to approve, skip, or modify each. Do not write code during triage. This is purely for review and prioritization -- implementation happens in /todo-resolve . First set the /model to Haiku Read all pending todos from .context/compound-engineering/todos/ and legacy todos/ directories Workflow 1. Present Each Finding For each pending todo, present it clearly with severity, category, description, location, pr...
|
237 |
| 8689 | test-browser | everyinc/compound-engineering-plugin |
Browser Test Skill Run end-to-end browser tests on pages affected by a PR or branch changes using the agent-browser CLI. Use agent-browser Only For Browser Automation This workflow uses the agent-browser CLI exclusively. Do not use any alternative browser automation system, browser MCP integration, or built-in browser-control tool. If the platform offers multiple ways to control a browser, always choose agent-browser . Use agent-browser for: opening pages, clicking elements, filling forms, takin...
|
237 |
| 8690 | novelist-analyst | rysweet/amplihack |
Analyze events through the disciplinary lens of narrative fiction, applying established storytelling frameworks (three-act structure, hero's journey, character arc theory), narrative theory, and literary analytical methods to understand human motivations, dramatic stakes, thematic resonance, and story coherence in real-world events. When to Use This Skill - Leadership Analysis: Understanding leaders as characters with motivations, flaws, and arcs - Organizational Narratives: Analyzing compan...
|
237 |
| 8691 | ui-design-system | alirezarezvani/claude-skills |
UI/UX Design & Development Expert Comprehensive UI/UX design, review, and improvement for modern web applications. Production-ready implementations with TailwindCSS + Radix UI + shadcn/ui and modern React patterns. Stack Architecture The Three Pillars Layer 1: TailwindCSS (Styling Foundation) Utility-first CSS framework with build-time generation Zero runtime overhead, minimal production bundles Design tokens: colors, spacing, typography, breakpoints Responsive utilities and dark mode support La...
|
237 |
| 8692 | flask | bobmatnyc/claude-mpm-skills |
Flask Skill Production-tested patterns for Flask with the application factory pattern, Blueprints, and Flask-SQLAlchemy. Latest Versions (verified January 2026): Flask: 3.1.2 Flask-SQLAlchemy: 3.1.1 Flask-Login: 0.6.3 Flask-WTF: 1.2.2 Werkzeug: 3.1.5 Python: 3.9+ required (3.8 dropped in Flask 3.1.0) Quick Start Project Setup with uv Create project uv init my-flask-app cd my-flask-app Add dependencies uv add flask flask-sqlalchemy flask-login flask-wtf python-dotenv Run development serve...
|
237 |
| 8693 | nansen-token-screener | nansen-ai/nansen-cli |
Token Discovery Answers: "What tokens are trending and worth a deeper look?" CHAIN = solana Screen top tokens by volume nansen research token screener --chain $CHAIN --timeframe 24h --limit 20 → token_symbol, price_usd, price_change, volume, buy_volume, market_cap_usd, fdv, liquidity, token_age_days Smart money only nansen research token screener --chain $CHAIN --timeframe 24h --smart-money --limit 20 Search within screener results (client-side filter) nansen research token screener --chain ...
|
237 |
| 8694 | better-auth | mrgoonie/claudekit-skills |
better-auth - D1 Adapter & Error Prevention Guide Package: better-auth@1.4.16 (Jan 21, 2026) Breaking Changes: ESM-only (v1.4.0), Admin impersonation prevention default (v1.4.6), Multi-team table changes (v1.3), D1 requires Drizzle/Kysely (no direct adapter) ⚠️ CRITICAL: D1 Adapter Requirement better-auth DOES NOT have d1Adapter(). You MUST use: Drizzle ORM (recommended): drizzleAdapter(db, { provider: "sqlite" }) Kysely: new Kysely({ dialect: new D1Dialect({ database: env.DB }) }) See Issu...
|
237 |
| 8695 | product-changelog | inference-sh/skills |
Product Changelog Write changelogs and release notes that users read and care about via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Generate a feature announcement visual infsh app run falai/flux-dev-lora --input '{ "prompt": "clean product UI screenshot mockup, modern dashboard interface showing a new analytics chart feature, light mode, minimal design, professional SaaS product", "...
|
237 |
| 8696 | worldlabs | opusgamelabs/game-creator |
World Labs — 3D World/Environment Generation Generate photorealistic 3D environments from text prompts or images using the World Labs Marble API. Outputs Gaussian Splat scenes (SPZ) rendered via SparkJS in Three.js, plus collider meshes (GLB) for physics. When to Use Environment/level generation — create entire 3D worlds (rooms, landscapes, buildings) from reference images or text Complementary to Meshy AI — Meshy generates individual models/characters; World Labs generates the environments they...
|
237 |
| 8697 | railway-service | davila7/claude-code-templates |
Railway Service Management Check status, update properties, and advanced service creation. When to Use User asks about service status, health, or deployments User asks "is my service deployed?" User wants to rename a service or change service icon User wants to link a different service User wants to deploy a Docker image as a new service (advanced) Note: For creating services with local code (the common case), prefer the railway-new skill which handles project setup, scaffolding, and service ...
|
237 |
| 8698 | loki-mode | davila7/claude-code-templates |
Loki Mode - Multi-Agent Autonomous Startup System Version 2.35.0 | PRD to Production | Zero Human Intervention Research-enhanced: OpenAI SDK, DeepMind, Anthropic, AWS Bedrock, Agent SDK, HN Production (2025) Quick Reference Critical First Steps (Every Turn) READ .loki/CONTINUITY.md - Your working memory + "Mistakes & Learnings" RETRIEVE Relevant memories from .loki/memory/ (episodic patterns, anti-patterns) CHECK .loki/state/orchestrator.json - Current phase/metrics REVIEW .loki/queue/pending....
|
237 |
| 8699 | cc-skill-continuous-learning | davila7/claude-code-templates |
cc-skill-continuous-learning Development skill skill.
|
237 |
| 8700 | tdd-workflows-tdd-cycle | sickn33/antigravity-awesome-skills |
Use this skill when Working on tdd workflows tdd cycle tasks or workflows Needing guidance, best practices, or checklists for tdd workflows tdd cycle Do not use this skill when The task is unrelated to tdd workflows tdd cycle 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/implementat...
|
237 |