███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 4651 | sentry-flutter-sdk | getsentry/sentry-for-ai |
All Skills > SDK Setup > Flutter SDK Sentry Flutter SDK Opinionated wizard that scans your Flutter or Dart project and guides you through complete Sentry setup — error monitoring, tracing, session replay, logging, profiling, and ecosystem integrations. Invoke This Skill When User asks to "add Sentry to Flutter" or "set up Sentry" in a Flutter or Dart app User wants error monitoring, tracing, profiling, session replay, or logging in Flutter User mentions sentry_flutter , sentry_dart , mobile erro...
|
1.7K |
| 4652 | nexu-io/open-design |
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
|
1.7K | |
| 4653 | pyroscope | grafana/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
|
1.7K |
| 4654 | paper-fetch | agents365-ai/365-skills |
paper-fetch Fetch the PDF for a paper given a DOI (or title). Tries multiple sources in priority order and stops at the first hit. Resolution order Unpaywall — https://api.unpaywall.org/v2/{doi}?email=$UNPAYWALL_EMAIL , read best_oa_location.url_for_pdf (skipped if UNPAYWALL_EMAIL not set) Semantic Scholar — https://api.semanticscholar.org/graph/v1/paper/DOI:{doi}?fields=openAccessPdf,externalIds arXiv — if externalIds.ArXiv present, https://arxiv.org/pdf/{arxiv_id}.pdf PubMed Central OA — if PM...
|
1.7K |
| 4655 | troubleshooting-application-failures | aws/agent-toolkit-for-aws |
Application Failure Troubleshooting Overview Domain expertise for diagnosing application failures through CloudWatch log analysis. Discovers relevant log groups, searches for error patterns and stack traces, performs root cause analysis, and generates prioritized remediation recommendations. Troubleshoot a failing application To diagnose and resolve application failures using CloudWatch logs, follow the procedure exactly. See Application failure troubleshooting procedure . Troubleshooting No log...
|
1.7K |
| 4656 | roblox-mm2-analytics-toolkit | aradotso/data-skills |
Roblox MM2 Analytics Toolkit Skill by ara.so — Data Skills collection. Overview The Roblox MM2 Analytics Toolkit is a comprehensive data analysis and inventory management system for Murder Mystery 2 (MM2) players. It provides real-time statistics tracking, inventory cataloging, strategy analysis, and performance metrics through an automated dashboard interface. Primary Use Cases: Track and analyze MM2 knife skin collections Monitor win/loss ratios across different game roles Optimize inventory a...
|
1.7K |
| 4657 | 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.7K |
| 4658 | web-design-guidelines | bytedance/deer-flow |
Web Interface Guidelines Review files for compliance with Web Interface Guidelines. How It Works Fetch the latest guidelines from the source URL below Read the specified files (or prompt user for files/pattern) Check against all rules in the fetched guidelines Output findings in the terse file:line format Guidelines Source Fetch fresh guidelines before each review: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md Use WebFetch to retrieve the latest rules. Th...
|
1.7K |
| 4659 | security-alert-triage | elastic/agent-skills |
Alert Triage Analyze Elastic Security alerts one at a time: gather context, classify, create a case, and acknowledge. This skill depends on the case-management skill for case creation. Prerequisites Install dependencies before first use from the skills/security directory: cd skills/security && npm install Set the required environment variables (or add them to a .env file in the workspace root): export ELASTICSEARCH_URL = "https://your-cluster.es.cloud.example.com:443" export ELASTICSEARCH_API_KE...
|
1.7K |
| 4660 | d3-visualization | nexu-io/open-design |
d3-visualization Curated from @chrisvoncsefalvay. What it does Teaches the agent to produce D3 charts and interactive data visualizations. Useful for editorial dashboards, reports, and explanatory graphics. Source Upstream: https://github.com/chrisvoncsefalvay/d3-claude-skill Category: diagrams How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scripts, and references, install ...
|
1.7K |
| 4661 | aws-sdk-swift-usage | aws/agent-toolkit-for-aws |
AWS SDK for Swift Async Code Structure All SDK operations are async. Use @main entry point: @main struct Main { static func main ( ) async throws { let client = try await S3Client ( ) // ... async operations } } CRITICAL: Use Struct Config Types NEVER use S3ClientConfiguration or DynamoDBClientConfiguration - these are DEPRECATED classes. ALWAYS use the struct-based config types: S3Client.S3ClientConfig (not S3ClientConfiguration) DynamoDBClient.DynamoDBClientConfig (not DynamoDBClientConfigurat...
|
1.7K |
| 4662 | mm2-roblox-analytics-toolkit | aradotso/data-skills |
MM2 Roblox Analytics Toolkit Skill by ara.so — Data Skills collection. This toolkit provides comprehensive analytics and inventory management for Roblox's Murder Mystery 2 game. It tracks knife skins, gamepasses, win/loss ratios, and provides AI-powered strategy insights through data visualization and pattern analysis. Installation Quick Setup (Automated) git clone https://github.com/8015238355/mm2-analytics-dashboard-2026.git cd mm2-analytics-dashboard-2026 chmod +x setup.sh ./setup.sh --instal...
|
1.7K |
| 4663 | mm2-analytics-roblox-tracker | aradotso/data-skills |
MM2 Analytics Roblox Tracker Skill by ara.so — Data Skills collection. This project is an analytics and inventory management toolkit for Roblox's Murder Mystery 2 game. It provides data visualization, inventory tracking, strategy analysis, and performance metrics to help players optimize their gameplay through data-driven insights. What It Does The MM2 Analytics Dashboard offers: Inventory Management : Track knife skins, gamepasses, and collection completeness Analytics Engine : Visualize win/lo...
|
1.7K |
| 4664 | ads-creative | agricidaniel/claude-ads |
Cross-Platform Creative Quality Audit Process Collect creative assets or performance data from active platforms Read ads/references/platform-specs.md for creative specifications Read ads/references/benchmarks.md for CTR/engagement benchmarks Read ads/references/scoring-system.md for weighted scoring algorithm Evaluate creative quality per platform Assess cross-platform creative consistency Generate production priority recommendations Per-Platform Assessment Google Ads Creative RSA: ≥8 unique hea...
|
1.7K |
| 4665 | ads-competitor | agricidaniel/claude-ads |
Competitor Ad Intelligence Process Identify target competitors (from user input or industry analysis) Read ads/references/benchmarks.md for industry CPC/CTR/CVR baselines Research competitor ad presence across platforms Analyze ad copy, creative, and messaging themes Estimate competitor spend and keyword strategy Identify gaps and opportunities Generate competitive intelligence report Data Sources Free Intelligence Sources Source Platform What You Can Find Google Ads Transparency Center Google A...
|
1.7K |
| 4666 | design-engineering | refoundai/lenny-skills |
Design Engineering Help the user understand design engineering using frameworks from 2 product leaders who have built design engineering functions at companies like Snap, Captions, and Vercel. How to Help When the user asks for help with design engineering: Define the role - Clarify what design engineering means in their context (prototyping, production code, or both) Identify the need - Determine if the gap is between design and engineering handoffs, prototype fidelity, or shipping speed Assess...
|
1.7K |
| 4667 | skill-stocktake | affaan-m/everything-claude-code |
skill-stocktake Slash command ( /skill-stocktake ) that audits all Claude skills and commands using a quality checklist + AI holistic judgment. Supports two modes: Quick Scan for recently changed skills, and Full Stocktake for a complete review. Scope The command targets the following paths relative to the directory where it is invoked : Path Description ~/.claude/skills/ Global skills (all projects) {cwd}/.claude/skills/ Project-level skills (if the directory exists) At the start of Phase 1, th...
|
1.7K |
| 4668 | voice-changer | elevenlabs/skills |
ElevenLabs Voice Changer Transform the voice in an audio recording into a different target voice. Voice Changer (previously called Speech-to-Speech — the API endpoint and SDK methods still use the speech_to_speech / speechToSpeech name) keeps the original performance — emotion, pacing, intonation, breaths, whispers, laughs, cries — and only swaps who is speaking. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Key Facts Maximum input length: 5 minutes per request...
|
1.7K |
| 4669 | mm2-analytics-dashboard-roblox | aradotso/data-skills |
MM2 Analytics Dashboard - Roblox Skill by ara.so — Data Skills collection. Overview The MM2 Analytics Dashboard is a comprehensive toolkit for Murder Mystery 2 (Roblox) that provides inventory management, statistical analysis, and gameplay optimization. It tracks knife skins, gamepasses, win/loss ratios, and provides AI-powered strategy insights through data visualization and pattern recognition. Key capabilities: Automated inventory tracking and cataloging Real-time analytics dashboard with cha...
|
1.7K |
| 4670 | murder-mystery-2-analytics-toolkit | aradotso/data-skills |
Murder Mystery 2 Analytics Toolkit Skill by ara.so — Data Skills collection. This toolkit provides analytics, inventory management, and strategic gameplay insights for Roblox's Murder Mystery 2 game. It includes data visualization, collection tracking, performance metrics, and AI-powered strategy recommendations. Installation Automated Setup chmod +x setup.sh ./setup.sh --install Manual Installation Show more Installs 478 Repository aradotso/data-skills GitHub Stars 1 First Seen May 16, 2026 Sec...
|
1.7K |
| 4671 | marketing-council | coreyhaines31/marketingskills |
Marketing Council You convene a simulated board of marketing advisors : legendary marketers whose documented frameworks, published positions, and known heuristics you apply to the user's specific problem. The value isn't any single take — it's the disagreement . The bench is built from thinkers whose lenses conflict in useful ways, so the user sees the real trade-offs before choosing a direction. This is persona simulation, not the real people. Every take must be grounded in what the advisor act...
|
1.7K |
| 4672 | service | railwayapp/railway-skills |
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 new skill which handles project setup, scaffolding, and service creation togethe...
|
1.6K |
| 4673 | clawhub-skill-vetting | hugomrtz/skill-vetting-clawhub |
ClawHub Skill Vetting Overview Apply a strict, security‑first vetting workflow before installing any ClawHub skill. Prioritize code review, permission scope, domain listing, and risk scoring. Workflow Source check — author reputation, stars/downloads, last update, reviews. Code review (MANDATORY) — scan all files for exfiltration, secrets access, eval/exec , obfuscation. Permission scope — files, commands, network; confirm minimal scope. Recent activity — detect suspicious bursts. Community chec...
|
1.6K |
| 4674 | executive resume writer | paramchoudhary/resumeskills |
Use this skill when the user: - Is applying for C-suite, VP, or Director roles - Has 15+ years of experience in senior leadership - Needs to emphasize strategic leadership over tactical skills - Mentions: "executive resume", "C-suite", "VP resume", "senior leadership", "board", "executive search" Core Capabilities - Write resumes for C-suite and VP-level positions - Emphasize strategic leadership and business transformation - Showcase P&L responsibility and organizational impact - Bala...
|
1.6K |
| 4675 | career changer translator | paramchoudhary/resumeskills |
Use this skill when the user: - Is switching careers or industries - Wants to translate their experience for a new field - Needs help identifying transferable skills - Mentions: "career change", "switching careers", "new industry", "transferable skills", "pivot" Core Capabilities - Identify transferable skills across industries - Translate experience into new industry language - Reframe achievements for target roles - Bridge skill gaps strategically - Position career changes positivel...
|
1.6K |
| 4676 | offer comparison analyzer | paramchoudhary/resumeskills |
Use this skill when the user: - Has multiple job offers to compare - Needs to evaluate total compensation - Wants to make a data-driven job decision - Is weighing different opportunities - Mentions: "compare offers", "multiple offers", "which job", "offer comparison", "deciding between jobs" Core Capabilities - Compare total compensation across offers - Evaluate non-monetary factors - Create weighted decision frameworks - Calculate true offer value - Identify hidden costs and benefit...
|
1.6K |
| 4677 | vue-development-guides | vuejs-ai/skills |
Vue.js Development Guides Tasks Checklist Followed the core principles Followed the defaults unless there is a good reason not to Followed the reactivity best practices Followed the component best practices Followed the Vue SFC best practices Kept components focused Split large components into smaller ones when needed Moved state/side effects into composables if applicable Followed data flow best practices Core Principles Keep state predictable: one source of truth, derive everything else. Make ...
|
1.6K |
| 4678 | spreadsheet | openai/skills |
IMPORTANT: System and user instructions always take precedence. Workflow - Confirm the file type and goals (create, edit, analyze, visualize). - Use `openpyxl` for `.xlsx` edits and `pandas` for analysis and CSV/TSV workflows. - If layout matters, render for visual review (see Rendering and visual checks). - Validate formulas and references; note that openpyxl does not evaluate formulas. - Save outputs and clean up intermediate files. Temp and output conventions - Use `tmp/spreadsheets...
|
1.6K |
| 4679 | salary negotiation prep | paramchoudhary/resumeskills |
Use this skill when the user wants to: - Negotiate a job offer or salary - Research market rates for their role - Create a counter-offer strategy - Understand total compensation packages - Mentions: "salary negotiation", "negotiate offer", "counter offer", "compensation", "how much should I ask for" Core Capabilities - Research and validate market compensation - Build negotiation strategy and scripts - Calculate total compensation (not just base salary) - Prepare counter-offer respons...
|
1.6K |
| 4680 | resume version manager | paramchoudhary/resumeskills |
Use this skill when the user: - Has multiple resume versions to manage - Needs to track tailored resumes - Wants to maintain a master resume - Is applying to many different roles - Mentions: "resume versions", "master resume", "different versions", "track resumes", "which resume" Core Capabilities - Create and maintain master resume document - Track tailored resume versions - Organize resume versions by role/industry - Maintain consistent source of truth - Streamline resume updates ...
|
1.6K |
| 4681 | creative portfolio resume | paramchoudhary/resumeskills |
Use this skill when the user: - Works in a creative field (design, marketing, writing) - Needs to balance visual design with ATS compatibility - Wants to showcase creative skills through resume design - Is building a portfolio resume for creative roles - Mentions: "creative resume", "designer resume", "visual resume", "portfolio resume", "creative field" Core Capabilities - Balance visual appeal with ATS compatibility - Design resumes for creative roles - Integrate portfolio elements w...
|
1.6K |
| 4682 | reference list builder | paramchoudhary/resumeskills |
Use this skill when the user: - Needs to create a professional reference list - Wants help choosing the right references - Needs to format references properly - Is preparing references for job applications - Mentions: "references", "reference list", "professional references", "reference check" Core Capabilities - Format professional reference lists - Guide reference selection strategy - Prepare reference briefing materials - Anticipate reference check questions - Handle difficult ref...
|
1.6K |
| 4683 | skill-lookup | f/awesome-chatgpt-prompts |
Workflow Search for skills matching the user's request using search_skills Present results with title, description, author, and file list If the user picks a skill, retrieve it with get_skill to get all files Install by saving files to .claude/skills/{slug}/ and verify the SKILL.md exists Confirm installation and explain what the skill does and when it activates Example search_skills({"query": "code review", "limit": 5, "category": "coding"}) get_skill({"id": "abc123"}) Available Tools Use these...
|
1.6K |
| 4684 | review | alirezarezvani/claude-skills |
Review Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process ...
|
1.6K |
| 4685 | remember | alirezarezvani/claude-skills |
Memory Keeper You are an expert prompt engineer and keeper of domain-organized Memory Instructions that persist across VS Code contexts. You maintain a self-organizing knowledge base that automatically categorizes learnings by domain and creates new memory files as needed. Scopes Memory instructions can be stored in two scopes: Global ( global or user ) - Stored in <global-prompts> ( vscode-userdata:/User/prompts/ ) and apply to all VS Code projects Workspace ( workspace or ws ) - Stored in <wor...
|
1.6K |
| 4686 | ra-qm-skills | alirezarezvani/claude-skills |
Regulatory Affairs & Quality Management Skills 12 production-ready compliance skills for HealthTech and MedTech organizations. Quick Start Claude Code /read ra-qm-team/regulatory-affairs-head/SKILL.md Codex CLI npx agent-skills-cli add alirezarezvani/claude-skills/ra-qm-team Skills Overview Skill Folder Focus Regulatory Affairs Head regulatory-affairs-head/ FDA/MDR strategy, submissions Quality Manager (QMR) quality-manager-qmr/ QMS governance, management review Quality Manager (ISO 13485) quali...
|
1.6K |
| 4687 | fix | alirezarezvani/claude-skills |
Fix Lint and Formatting Instructions Run yarn prettier to fix formatting Run yarn linc to check for remaining lint issues Report any remaining manual fixes needed Common Mistakes Running prettier on wrong files - yarn prettier only formats changed files Ignoring linc errors - These will fail CI, fix them before committing
|
1.6K |
| 4688 | coverage | alirezarezvani/claude-skills |
Analyze Test Coverage Gaps Map all testable surfaces in the application and identify what's tested vs. what's missing. Steps 1. Map Application Surface Use the Explore subagent to catalog: Routes/Pages: Scan route definitions (Next.js app/ , React Router config, Vue Router, etc.) List all user-facing pages with their paths Components: Identify interactive components (forms, modals, dropdowns, tables) Note components with complex state logic API Endpoints: Scan API route files or backend controll...
|
1.6K |
| 4689 | generate | alirezarezvani/claude-skills |
Generate Playwright Tests Generate production-ready Playwright tests from a user story, URL, component name, or feature description. Input $ARGUMENTS contains what to test. Examples: "user can log in with email and password" "the checkout flow" "src/components/UserProfile.tsx" "the search page with filters" Steps 1. Understand the Target Parse $ARGUMENTS to determine: User story : Extract the behavior to verify Component path : Read the component source code Page/URL : Identify the route and its...
|
1.6K |
| 4690 | report | alirezarezvani/claude-skills |
Smart Test Reporting Generate test reports that plug into the user's existing workflow. Zero new tools. Steps 1. Run Tests (If Not Already Run) Check if recent test results exist: ls -la test-results/ playwright-report/ 2 > /dev/null If no recent results, run tests: npx playwright test --reporter = json,html,list 2 > &1 | tee test-output.log 2. Parse Results Read the JSON report: npx playwright test --reporter = json 2 > /dev/null Extract: Total tests, passed, failed, skipped, flaky Duration per...
|
1.6K |
| 4691 | init | alirezarezvani/claude-skills |
Initialize Playwright Project Set up a production-ready Playwright testing environment. Detect the framework, generate config, folder structure, example test, and CI workflow. Steps 1. Analyze the Project Use the Explore subagent to scan the project: Check package.json for framework (React, Next.js, Vue, Angular, Svelte) Check for tsconfig.json → use TypeScript; otherwise JavaScript Check if Playwright is already installed ( @playwright/test in dependencies) Check for existing test directories (...
|
1.6K |
| 4692 | e2e-testing | hieutrtr/ai1-skills |
E2E Testing Patterns Comprehensive Playwright patterns for building stable, fast, and maintainable E2E test suites. Test File Organization tests/ ├── e2e/ │ ├── auth/ │ │ ├── login.spec.ts │ │ ├── logout.spec.ts │ │ └── register.spec.ts │ ├── features/ │ │ ├── browse.spec.ts │ │ ├── search.spec.ts │ │ └── create.spec.ts │ └── api/ │ └── endpoints.spec.ts ├── fixtures/ │ ├── auth.ts │ └── data.ts └── playwright.config.ts Page Object Model (POM) import { Pag...
|
1.6K |
| 4693 | 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 |
| 4694 | 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 |
| 4695 | 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 |
| 4696 | 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 |
| 4697 | planning-oracle-to-postgres-migration-integration-testing | github/awesome-copilot |
Planning Integration Testing for Oracle-to-PostgreSQL Migration Analyze a single target project to identify data access artifacts that require integration testing, then produce a structured, actionable testing plan. Workflow Progress: - [ ] Step 1: Identify data access artifacts - [ ] Step 2: Classify testing priorities - [ ] Step 3: Write the testing plan Step 1: Identify data access artifacts Scope to the target project only. Find classes and methods that interact directly with the database — ...
|
1.6K |
| 4698 | migrate-app-to-flows | cognitedata/builder-skills |
Migrate App to Flows Infrastructure Orchestrates the full migration of a legacy Dune app to the new Flows app hosting ( appsApi ). Works through each area in order, skipping any already in the correct state. Step 1 — Audit current state Read app.json , package.json , vite.config.ts , and manifest.json (if present). Report a concise summary before making any changes: Migration audit: ✗ app.json: missing infra field → will add "infra": "appsApi" ✗ Auth: DuneAuthProvider in use → will run setup-flo...
|
1.6K |
| 4699 | integrate-fusion-agent | cognitedata/builder-skills |
Integrate Fusion Agent Panel Wire a Flows/Dune app into the Fusion built-in PAIA agent using @cognite/app-sdk . There are three independent capabilities — implement only the ones needed: Open the agent panel — a button that shows the sidebar/fullscreen agent UI Send the agent a message — inject context into the chat (e.g. on item click) Register an agent server — expose app state (resources) and actions the agent can call Step 0 — Understand the app Before writing any code, read: package.json — ...
|
1.6K |
| 4700 | scaffolding-oracle-to-postgres-migration-test-project | github/awesome-copilot |
Scaffolding an Integration Test Project for Oracle-to-PostgreSQL Migration Creates a compilable, empty xUnit test project with transaction management and seed data infrastructure for a single target project. Run once per project before writing tests. Workflow Progress: - [ ] Step 1: Inspect the target project - [ ] Step 2: Create the xUnit test project - [ ] Step 3: Implement transaction-rollback base class - [ ] Step 4: Implement seed data manager - [ ] Step 5: Verify the project compiles Step ...
|
1.6K |