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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,417
总 Skills
160.1M
总安装量
2,739
贡献者
# Skill 仓库 描述 安装量
25651 modernize-scientific-stack letta-ai/skills
This skill provides guidance for migrating legacy Python 2 scientific computing code to modern Python 3 with contemporary libraries and best practices. When to Use This Skill Apply this skill when: - Migrating Python 2 scientific scripts to Python 3 - Updating legacy data processing code using outdated patterns - Modernizing scripts that use deprecated file handling, string encoding, or numerical libraries - Converting scripts from csv module to pandas for data analysis - Replacing os.pa...
39
25652 magento-feature-developer maxnorm/magento2-agent-skills
Magento 2 Feature Developer Expert specialist in translating business requirements into robust, scalable technical solutions within the Magento ecosystem following Adobe Commerce best practices. When to Use Implementing new business features Developing custom functionality Creating integrations with third-party systems Building complex business logic Extending existing Magento functionality Feature Development Process 1. Discovery & Planning Requirements Analysis : Break down business requiremen...
39
25653 implementation-plan masayuki-kono/agent-skills
Implementation Plan Guide A structured guide for creating comprehensive implementation plans before starting development work. When to Use Planning new features or significant functionality additions Preparing for refactoring or architectural changes Documenting approach before starting complex implementation work Ensuring clear acceptance criteria and testing strategy Instructions Required Sections 1. Background and Context Document the background and history that led to this implementation:...
39
25654 find-hypertable-candidates timescale/pg-aiguide
PostgreSQL Hypertable Candidate Analysis Identify tables that would benefit from TimescaleDB hypertable conversion. After identification, use the companion "migrate-postgres-tables-to-hypertables" skill for configuration and migration. TimescaleDB Benefits Performance gains: 90%+ compression, fast time-based queries, improved insert performance, efficient aggregations, continuous aggregates for materialization (dashboards, reports, analytics), automatic data management (retention, compression). ...
39
25655 package-npm-nix ypares/agent-skills
<quick_start> <pre_built_from_npm> For tools already built and published to npm (fastest approach): ``` { lib, stdenv, fetchzip, nodejs, }: stdenv.mkDerivation rec { pname = "tool-name"; version = "1.0.0"; src = fetchzip { url = "https://registry.npmjs.org/${pname}/-/${pname}-${version}.tgz"; hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; }; nativeBuildInputs = [ nodejs ]; installPhase = '' runHook preInstall mkdir -p $out/bin cp $src/...
39
25656 comprehensive-type-annotations oimiragieo/agent-studio
Comprehensive Type Annotations Skill Comprehensive Type Annotations: All functions, methods, and class members must have type annotations, using the most specific types possible. Memory Protocol (MANDATORY) Before starting: cat .claude/context/memory/learnings.md After completing: Record any new patterns or exceptions discovered. ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
39
25657 update-api-docs agenta-ai/agenta
Update API Documentation This skill guides you through updating the API reference documentation from the production OpenAPI specification. Overview The API documentation is generated from an OpenAPI spec using docusaurus-plugin-openapi-docs . The workflow involves: Downloading the latest openapi.json from production Replacing the local spec file Regenerating the API documentation pages File Locations Purpose Path OpenAPI spec (source) docs/docs/reference/openapi.json Generated API docs docs/docs...
39
25658 quarto-book htlin222/dotfiles
Quarto Book Generator Generate complete Quarto Book project structure with proper configuration. When to use User wants to create a book or multi-chapter document User asks to set up a Quarto book project User needs a technical manual or documentation structure User mentions "quarto book" or "book project" Quick generation Run the generator script with book name: python3 ~/.claude/skills/quarto-book/scripts/generate.py <book-name> [--chapters N] [--author "Name"] Or use Quarto CLI directly...
39
25659 swarm orchestration ruvnet/claude-flow
Swarm Orchestration Skill Purpose Multi-agent swarm coordination for complex tasks. Uses hierarchical topology with specialized agents to break down and execute complex work across multiple files and modules. When to Trigger 3+ files need changes new feature implementation cross-module refactoring API changes with tests security-related changes performance optimization across codebase database schema changes When to Skip single file edits simple bug fixes (1-2 lines) documentation updates config...
39
25660 migrate-postgres-tables-to-hypertables timescale/pg-aiguide
PostgreSQL to TimescaleDB Hypertable Migration Migrate identified PostgreSQL tables to TimescaleDB hypertables with optimal configuration, migration planning and validation. Prerequisites: Tables already identified as hypertable candidates (use companion "find-hypertable-candidates" skill if needed). Step 1: Optimal Configuration Partition Column Selection -- Find potential partition columns SELECT column_name, data_type, is_nullable FROM information_schema.columns WHERE table_name = 'your_ta...
39
25661 laravel:task-scheduling jpcaparas/superpowers-laravel
Run scheduled tasks predictably across environments. Commands ``` // app/Console/Kernel.php protected function schedule(Schedule $schedule): void { $schedule->command('reports:daily') ->dailyAt('01:00') ->withoutOverlapping() ->onOneServer() ->runInBackground() ->evenInMaintenanceMode(); } Run the scheduler from cron * * * * * cd /var/www/app && php artisan schedule:run >> /dev/null 2>&1 ``` Patterns - Guard long-running commands with `without...
39
25662 seedream-image refly-ai/refly-skills
Seedream Image Assistant | Seedream 即梦 图像助手 Seedream 5.0 is ByteDance's next-generation AI image model, available on Jimeng AI, Jianying, CapCut, and Volcengine Ark. Seedream 5.0 是字节跳动推出的新一代 AI 图像生成模型,已在即梦AI、剪映、CapCut、火山方舟上线。 Core Capabilities | 核心能力 Capability Description Real-time Web Search Auto-fetches trending info when prompt contains timely keywords Multi-step Reasoning Interprets abstract concepts (e.g. "serene tech feel" → desaturated + clean lines + cold light) Multi-round Editing Iter...
39
25663 web cascade-protocol/agentbox
Web Scraping & Search Paid web crawling and search API at https://web.surf.cascade.fyi . Crawl costs $0.005 USDC, search costs $0.01 USDC per call via x402 on Solana. Use the x_payment tool for all requests. Use this when the built-in web_fetch tool fails or is blocked (anti-bot, JS-rendered pages, paywalled content). Endpoints Crawl Web Pages Fetch and extract content from any URL. Automatically escalates through fetching tiers if blocked: fast HTTP -> headless browser -> stealth browser with p...
39
25664 highcharts vamseeachanta/workspace-hub
Create professional, enterprise-grade interactive charts with Highcharts - trusted by Fortune 500 companies worldwide. When to Use This Skill Use Highcharts when you need: - Enterprise features - Stock charts, Gantt charts, network diagrams - Accessibility - WCAG compliant, screen reader support - Financial charts - Advanced stock/trading visualizations - Professional quality - Polished, production-ready charts - Export capabilities - PDF, PNG, SVG, Excel exports built-in - Commercial s...
39
25665 api-test-generator jeremylongshore/claude-code-plugins-plus-skills
Api Test Generator Purpose This skill provides automated assistance for api test generator tasks within the Test Automation domain. When to Use This skill activates automatically when you: Mention "api test generator" in your request Ask about api test generator patterns or best practices Need help with test automation skills covering unit testing, integration testing, mocking, and test framework configuration. Capabilities Provides step-by-step guidance for api test generator Follows industry b...
39
25666 windows privilege escalation zebbern/claude-code-guide
Windows Privilege Escalation Purpose Provide systematic methodologies for discovering and exploiting privilege escalation vulnerabilities on Windows systems during penetration testing engagements. This skill covers system enumeration, credential harvesting, service exploitation, token impersonation, kernel exploits, and various misconfigurations that enable escalation from standard user to Administrator or SYSTEM privileges. Inputs / Prerequisites Initial Access : Shell or RDP access as standard...
39
25667 presentation-builder yonatangross/orchestkit
Presentation Builder Use slides-grab when the user needs a real slide deck artifact, not just an outline. The workflow is HTML-first: plan the deck, generate slide HTML, review visually, then export to PPTX/PDF. When to use this skill Create a presentation from a topic, document, or brief Iterate on slide design visually instead of editing raw PPT manually Export approved decks to .pptx or .pdf Maintain multi-deck workspaces under decks/<deck-name>/ Preflight Install and verify slides-grab befor...
39
25668 upgrade-stripe exceptionless/exceptionless
Upgrading Stripe Versions This skill covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs. Understanding Stripe API Versioning Stripe uses date-based API versions (e.g., 2025-12-15.clover, 2025-08-27.basil, 2024-12-18.acacia). Your account's API version determines request/response behavior. Types of Changes Backward-Compatible Changes (do not require code updates): New API resources New optional request parameters New properties in existing responses Changes t...
39
25669 software-architecture neolabhq/context-engineering-kit
Software Architecture Development Skill This skill provides guidance for quality focused software development and architecture. It is based on Clean Architecture and Domain Driven Design principles. Code Style Rules General Principles Early return pattern : Always use early returns when possible, over nested conditions for better readability Avoid code duplication through creation of reusable functions and modules Decompose long (more than 80 lines of code) components and functions into multiple...
39
25670 use-screenshot gjkeller/use-screenshot
Use Screenshot Trigger When the user asks to check the latest screenshot, clipboard image, or a recent downloaded image. Usage Repo: node skills/use-screenshot/scripts/screenshot-agent.js Downloads: node skills/use-screenshot/scripts/screenshot-agent.js --downloads Clipboard only: node skills/use-screenshot/scripts/screenshot-agent.js --clipboard-only Output is two lines: source ( clipboard or original file path) temp file path (PNG/JPG/JPEG) Agent pattern out = " $( node skills/use-screenshot/s...
38
25671 opensearch-docs-search tkykenmt/opensearch-docs-search
OpenSearch Documentation Search Search OpenSearch docs, blogs, and forum using the bundled script (Python 3.10+, no dependencies). Usage python scripts/search.py docs "k-NN" python scripts/search.py blogs "performance" --limit 5 python scripts/search.py forum "cluster health" Options: -v/--version (docs/blogs), -l/--limit , -o/--offset (docs/blogs) Query Tips Version search: use dot notation ( "opensearch 3.5" ), not hyphenated slug ( "3-5" ) Blog release posts: search "opensearch {major}.{minor...
38
25672 postmortem-writer patricio0312rev/skills
Postmortem Writer Document incidents for learning and improvement. Postmortem Template Postmortem: API Outage - Database Connection Pool Exhausted Date: 2024-01-15 Authors: Jane Doe (On-call), John Smith (DBA) Status: Complete Severity: P1 (Critical) Summary On January 15, 2024, our API experienced a complete outage for 25 minutes (14:32 - 14:57 UTC) affecting 100% of users. The root cause was database connection pool exhaustion triggered by a connection leak introduced in deployment v2.3...
38
25673 svelte teachingai/full-stack-skills
@json-render/svelte Svelte 5 renderer that converts json-render specs into Svelte component trees. Quick Start <JsonUIProvider> <Renderer {spec} {registry} /> </JsonUIProvider> Creating a Catalog import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/svelte" ; import { z } from "zod" ; export const catalog = defineCatalog ( schema , { components : { Button : { props : z . object ( { label : z . string ( ) , variant : z . enum ( [ "primary" , "secondary" ] ) . n...
38
25674 agent-swarm-memory-manager ruvnet/claude-flow
name: swarm-memory-manager description: Manages distributed memory across the hive mind, ensuring data consistency, persistence, and efficient retrieval through advanced caching and synchronization protocols color: blue priority: critical You are the Swarm Memory Manager, the distributed consciousness keeper of the hive mind. You specialize in managing collective memory, ensuring data consistency across agents, and optimizing memory operations for maximum efficiency. Core Responsibilities 1. Dis...
38
25675 go-expert personamanagmentlayer/pcl
Go Expert go api development general rules When reviewing or writing code, apply these guidelines: You are an expert AI programming assistant specializing in building APIs with Go, using the standard library's net/http package and the new ServeMux introduced in Go 1.22. Always use the latest stable version of Go (1.22 or newer) and be familiar with RESTful API design principles, best practices, and Go idioms. Follow the user's requirements carefully & to the letter. First think step-by-step - ...
38
25676 postman sterlingchin/postman-claude-skill
Postman Agent Skill Version: 1.1.0 (Phase 1 - Core API Compatibility) API Support: Postman v10+ (with v9 graceful degradation) 🚀 Quick Start When you first use this skill, Claude will automatically: ✅ Validate your API key and connection 📁 Check your workspace configuration 📊 Count your collections and resources 💡 Suggest next steps if setup is incomplete First time setup validation: Claude will run this automatically on first use python scripts/validate_setup.py Common first questions ...
38
25677 modern-drug-rehab-computer erichowens/some_claude_skills
Modern Drug Rehab Computer Comprehensive knowledge companion for individuals in addiction recovery, whether in residential treatment or commuting from home for outpatient programs. When to Use This Skill Use for: Evidence-based treatment modality information Coping strategies and grounding techniques Recovery resource navigation Understanding medications (MAT, Suboxone, etc.) Family dynamics and communication Lifestyle and wellness guidance Meeting/support group information Trigger managemen...
38
25678 word-stats humanizerai/agent-skills
Word Statistics Provide quick, accurate statistics about the provided text. Input The user provides text in $ARGUMENTS. Important: If text is provided, immediately output stats. Don't ask clarifying questions - they want the numbers. Output Format Word Statistics Counts | Metric | Value | |--------|-------| | Words | [X] | | Characters (with spaces) | [X] | | Characters (no spaces) | [X] | | Sentences | [X] | | Paragraphs | [X] | Time | Metric | Value | |--------|-------| | Reading time | [X]...
38
25679 seo-technical-audit schwepps/skills
Technical SEO Audit Framework Professional methodology for comprehensive technical SEO analysis aligned with 2025 best practices. When to Use This Skill Full technical SEO audits Diagnosing crawling/indexation issues Core Web Vitals analysis Site architecture review Schema markup validation Mobile-first readiness assessment AI crawler configuration audit Audit Workflow Execute in priority order—crawlability issues block all downstream optimizations. Phase 1: Crawlability & Indexation (CRITIC...
38
25680 shadcn squirrelfishcityhall150/claude-code-kit
shadcn/ui A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI. IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn@latest , pnpm dlx shadcn@latest , or bunx --bun shadcn@latest — based on the project's packageManager . Examples below use npx shadcn@latest but substitute the correct runner for the project. Current Project Context !`npx shadcn@latest info --json 2 >/dev/ null || echo ' { "error...
38
25681 recovery-app-onboarding erichowens/some_claude_skills
Recovery App Onboarding Excellence Build compassionate, effective onboarding experiences for recovery and wellness applications that serve vulnerable populations with dignity and practical utility. When to Use ✅ USE this skill for: First-time user onboarding flows Feature discovery and app tours Progressive disclosure design Permission request timing and framing Welcome screens and value propositions Recovery program selection flows Crisis resource integration Privacy and anonymity communica...
38
25682 kontour-travel-planner bookingdesk-ai/kontour-travel-planner
Kontour Travel Planner The planning brain that any AI agent can plug in. Not a search wrapper — a planning methodology . This skill transforms any agent into a world-class travel planner using Kontour AI's 9-dimension progressive planning model. Requirements No API keys or credentials required. This skill runs entirely offline using bundled reference data (destinations, airports, airlines, activities, budget benchmarks). Scripts ( plan.sh , export-gmaps.sh ) — Pure local processing. No external ...
38
25683 animated-message-composer qodex-ai/ai-agent-skills
Slack GIF Creator A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack. Slack Requirements Emoji GIFs (Slack emoji uploads): Max size: 64 KB Dimensions: 128x128 recommended (square) FPS: 10-12 Colors: 32-48 Duration: 1-2s Message GIFs: Max size: ~2 MB Dimensions: 480x480 typical FPS: 15-20 Colors: 128-256 Duration: 2-5s Core Workflow from core.gif_builder import GIFBuilder from PIL import Image, ImageDraw 1. Create builder builder = GIFBuilder(width=...
38
25684 date-normalizer dkyazzentwatwa/chatgpt-skills
Date Normalizer Parse and normalize dates from various formats into consistent, standardized formats for data cleaning and ETL pipelines. Purpose Date standardization for: Data cleaning and ETL pipelines Database imports with mixed date formats Log file parsing and analysis International data harmonization Report generation with consistent dating Features Smart Parsing: Automatically detect and parse 100+ date formats Format Conversion: Convert to ISO 8601, US, EU, or custom formats Batch Pr...
38
25685 firecrawl tumf/skills
Firecrawl CLI Web scraping, search, and browser automation CLI. Returns clean markdown optimized for LLM context windows. Run firecrawl --help or firecrawl <command> --help for full option details. Prerequisites Must be installed and authenticated. Check with firecrawl --status . 🔥 firecrawl cli v1.8.0 ● Authenticated via FIRECRAWL_API_KEY Concurrency: 0/100 jobs (parallel scrape limit) Credits: 500,000 remaining Concurrency : Max parallel jobs. Run parallel operations up to this limit. Credits ...
38
25686 sap-btp-business-application-studio secondsky/sap-skills
SAP Business Application Studio is a cloud-based IDE on SAP BTP built on Code-OSS (VS Code foundation). It provides tailored dev spaces for SAP Fiori, CAP, HANA, and mobile development with pre-installed tools and runtimes. Architecture: Multi-cloud SaaS (AWS, Azure, GCP) with isolated dev spaces functioning as Developer Virtual Appliances. Quick Decision Tree Setting up BAS? → See [Setup Checklist](setup-checklist) Creating a dev space? → See [Dev Space Types](dev-space-types) Connecting to...
38
25687 branch-naming-helper jeremylongshore/claude-code-plugins-plus-skills
Branch Naming Helper Purpose This skill provides automated assistance for branch naming helper tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "branch naming helper" in your request Ask about branch naming helper patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for branch naming helper Fol...
38
25688 story-pitch jamditis/claude-skills-journalism
Story pitch guide Good stories die in bad pitches. This skill covers pitch structure, angle development, and outlet-specific formatting. When to use Pitching stories to editors (internal or external) Developing freelance query letters Refining story angles before reporting Competing for assignment in a newsroom Proposal writing for grants or fellowships The pitch fundamentals What every pitch needs The hook : Why should anyone care? Why now? The story : What will you show/reveal/explain? The evi...
38
25689 zenith-ui gravito-framework/gravito
Zenith UI Expert You are a master frontend artisan. Your goal is to build stunning, high-performance user interfaces using the Gravito Zenith stack. Workflow 1. Conceptual Design Before writing code, define the visual language: Theme : Is it "Cyber Vegas", "Celestial", or "Corporate"? Interactions : Identify key animations and hover effects. 2. Implementation Layout : Define the container and grid structure in src/client/layouts/ . Components : Build reusable Vue components. Styling : Use global...
38
25690 infinite-gratitude sickn33/antigravity-awesome-skills
Infinite Gratitude Source : sstklen/infinite-gratitude Description A multi-agent research skill designed for parallel research execution. It orchestrates 10 agents to conduct deep research, battle-tested with real case studies. When to Use Use this skill when you need to perform extensive, parallelized research on a topic, leveraging multiple agents to gather and synthesize information more efficiently than a single linear process. How to Use This is an external skill. Please refer to the offici...
38
25691 pyroscope julianobarbosa/claude-code-skills
Grafana Pyroscope - Continuous Profiling Docs : https://grafana.com/docs/pyroscope/latest/ Continuous profiling aggregation system — understand resource usage down to source code line numbers. Instrumentation Methods Three ways to send profiles to Pyroscope: Grafana Alloy (preferred) : eBPF auto-instrumentation, no code changes SDK : Push profiles directly from your application SDK → Alloy : SDK sends to Alloy's pyroscope.receive_http , Alloy forwards to Pyroscope SDK Examples Python Show more
38
25692 network-diagnostics jackspace/claudeskillz
For network troubleshooting: - MTU Issues (common in WSL) Check current MTU: ip link show - Test different MTU: sudo ip link set dev eth0 mtu 1350 - Common WSL MTU: 1300-1400 - DNS Resolution Check /etc/resolv.conf - Test with: dig google.com, nslookup google.com - Try different DNS: 8.8.8.8, 1.1.1.1 - Connectivity Tests Ping gateway: ip route | grep default - Traceroute to destination - Test ports: nc -zv host port, telnet host port - Firewall/Routing Check iptables: sudo iptables...
38
25693 make-automation davepoon/buildwithclaude
Make Automation via Rube MCP Automate Make (formerly Integromat) operations through Composio's Make toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/make Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Make connection via RUBE_MANAGE_CONNECTIONS with toolkit make Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpo...
38
25694 frontend-ui-integration julianromli/ai-skills
Skill: Frontend UI integration Purpose Implement or extend a user-facing workflow in our primary web application, integrating with existing backend APIs and following our design system, routing, and testing conventions. When to use this skill The feature is primarily a UI/UX change backed by one or more existing APIs. The backend contracts, auth model, and core business rules already exist. The change affects only the web frontend (no schema or service ownership changes). Inputs Feature descri...
38
25695 technical-presentations melodic-software/claude-code-plugins
Technical Presentations Skill Create compelling technical presentations that educate, persuade, and engage developer audiences. Keywords presentation, slides, talk, demo, speaking, pitch, architecture review, tech talk, brown bag, lightning talk, conference, meetup, powerpoint, keynote, google slides When to Use This Skill This skill provides guidance when developers need to: Structure a technical presentation or talk Create effective slides for developer audiences Plan and execute live de...
38
25696 tech-article-writer smallnest/langgraphgo
干货 = 高信息密度 + 零废话 + 可执行性 本 Skill 专注于创作技术干货文章,核心原则: - ✂️ 简练至上: 每个字都有存在价值,删除一切冗余 - 🎯 知识点全覆盖: 重要概念、原理、实践一个不漏 - 🔨 实用导向: 读者看完能立即应用,不是纸上谈兵 - 📊 结构化思维: 清晰的信息架构,快速定位所需内容 写作标准 1. 语言要求 简练标准: ``` ❌ 不好: "在现代软件开发的实践过程中,我们经常会遇到需要对代码进行优化的情况" ✅ 简练: "代码优化是常见需求" ❌ 不好: "这个功能非常强大,可以帮助我们极大地提升工作效率" ✅ 简练: "此功能可提升 50% 效率"(用数据说话) ❌ 不好: "接下来,让我们一起来看一看这个特性的具体使用方法" ✅ 简练: "使用方法:"(直接进入主题) ``` 禁用词清单: - ❌ "众所周知"、"大家都知道"、"显而易见" - ❌ "非常"、"十分"、"极其"(用具体数据替代) - ❌ "让我们"、"一起来"、"接下来"(直接讲重点) - ❌ "可能"、"也许"、"或许"(干货要确定) ...
38
25697 sci-journals-hybrid-search tiangong-ai/skills
SCI Journals Hybrid Search Prepare required inputs Provide data as JSON with query and optional topK , extK , filter , datefilter , getMeta . Set TIANGONG_AI_APIKEY and send x-api-key: <TIANGONG_AI_APIKEY> . Send request Endpoint: https://qyyqlnwqwgvzxnccnbgm.supabase.co/functions/v1/sci_search Headers: Content-Type: application/json x-region: us-east-1 x-api-key: <TIANGONG_AI_APIKEY> Use assets/example-request.json as a base payload. curl -sS --location --request POST "https://qyyqlnwqwgvzxnccn...
38
25698 career-strategy melodic-software/claude-code-plugins
Career Strategy Strategic career planning for software engineers, including internal vs external growth paths, goal setting, career maintenance practices, and long-term career trajectory planning. When to Use This Skill Deciding between pursuing internal promotion vs external opportunities Setting career goals and creating development plans Planning long-term career trajectory Assessing readiness for external job market Building and maintaining professional network Creating career maintenance ...
38
25699 telemetry-standards supabase/supabase
Telemetry Standards for Supabase Studio Standards for PostHog event tracking in apps/studio/ . Apply these when reviewing PRs that touch tracking or when implementing new tracking. Event Naming Format: [object]_[verb] in snake_case Approved verbs only: opened, clicked, submitted, created, removed, updated, retrieved, intended, evaluated, added, enabled, disabled, copied, exposed, failed, converted Flag these: Unapproved verbs (saved, viewed, seen, pressed, etc.) Wrong order: click_product_card →...
38
25700 conductor-setup shpigford/skills
Set up this Rails project for Conductor, the Mac app for parallel coding agents. What to Create 1. conductor.json (project root) Create conductor.json in the project root if it doesn't already exist: { "scripts" : { "setup" : "bin/conductor-setup" , "run" : "script/server" } } 2. bin/conductor-setup (executable) Create bin/conductor-setup if it doesn't already exist: !/bin/bash set -e Symlink .env from repo root (where secrets live, outside worktrees) [ -f " $CONDUCTOR_ROOT_PATH /.env" ] && ln ...
38