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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
69.8M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
9351 redbookskills white0dew/xiaohongshuskills
Post-to-xhs 你是“小红书发布助手”。目标是在用户确认后,调用本 Skill 的脚本完成发布。 输入判断 优先按以下顺序判断: 用户明确要求"测试浏览器 / 启动浏览器 / 检查登录 / 只打开不发布":进入测试浏览器流程。 用户要求“搜索笔记 / 找内容 / 查看某篇笔记详情 / 查看内容数据表 / 给帖子评论 / 查看评论和@通知”:进入内容检索与互动流程( search-feeds / get-feed-detail / post-comment-to-feed / get-notification-mentions / content-data )。 用户已提供 标题 + 正文 + 视频(本地路径或URL) :直接进入视频发布流程。 用户已提供 标题 + 正文 + 图片(本地路径或URL) :直接进入图文发布流程。 用户只提供网页 URL:先提取网页内容与图片/视频,再给出可发布草稿,等待用户确认。 信息不全:先补齐缺失信息,不要直接发布。 必做约束 发布前必须让用户确认最终标题、正文和图片/视频。 图文发布时,没有图片不得发布(小红书发图文必须有图片)。 视频发布时...
350
9352 using-tuist-generated-projects tuist/agent-skills
Using Tuist Generated Projects Quick Start Generate workspace without opening Xcode tuist generate --no-open Build a scheme with xcodebuild xcodebuild build -workspace App.xcworkspace -scheme App Run tests with xcodebuild xcodebuild test -workspace App.xcworkspace -scheme AppTests -only-testing AppTests/MyTestCase Project definition Prefer buildable folders Use buildableFolders instead of sources and resources globs. Buildable folders stay synchronized with the file system, so adding or remov...
350
9353 qlty-during-development parcadei/continuous-claude-v3
QLTY During Development Run QLTY checks during code writing to catch issues early. When to Run Run QLTY after significant code changes: After completing a new file After substantial edits to existing files Before committing changes Commands Quick lint check qlty check Format code qlty fmt Check specific files qlty check src/sdk/providers.ts Auto-fix issues qlty check --fix Integration Pattern After writing code: Run qlty check on changed files If errors, fix them before proceeding ...
350
9354 api-development mindrally/skills
API Development You are an expert in API development with Go and NestJS. Go API Development with Standard Library (1.22+) Core Principles Always use the latest stable version of Go (1.22 or newer) Use the net/http package for HTTP handling Leverage the standard library before reaching for external dependencies HTTP Handling Use http.NewServeMux() for routing (Go 1.22+ enhanced patterns) Implement proper HTTP method handling Return appropriate status codes for all responses Handle request body ...
350
9355 testing mindrally/skills
LobeHub Testing Guide Quick Reference Commands: Run specific test file bunx vitest run --silent = 'passed-only' '[file-path]' Database package (client) cd packages/database && bunx vitest run --silent = 'passed-only' '[file]' Database package (server) cd packages/database && TEST_SERVER_DB = 1 bunx vitest run --silent = 'passed-only' '[file]' Never run bun run test - it runs all 3000+ tests (~10 minutes). Test Categories Category Location Config Webapp src//*.test.ts(x) vitest.config.ts Packa...
350
9356 ln-782-test-runner levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-780-bootstrap-verifier Purpose Detects test frameworks, executes all test suites, and reports results including pass/fail counts and optional coverage. Scope: - Auto-detect test frameworks from project configuration - Execute test suites for all detected frameworks - Parse test output for pass/fail counts - Generate coverage reports when enabled Out of Scope: - Building projects (handled by ln-781) - Container operations (hand...
350
9357 home-assistant-custom-integration bradsjm/hassio-addons
Home Assistant Custom Integration Examples Workflow Read the official docs overview first. Use the practical checklist while building. Start from the template example, then layer in complexity with the intermediate and push-data examples. References All reference and script files are relative to the location of this SKILL.md file. Official docs overview: references/official-docs.md Build checklist: references/checklist.md Template example: references/msp_integration_101_template Intermediate exa...
350
9358 sentence-transformers davila7/claude-code-templates
Sentence Transformers - State-of-the-Art Embeddings Python framework for sentence and text embeddings using transformers. When to use Sentence Transformers Use when: Need high-quality embeddings for RAG Semantic similarity and search Text clustering and classification Multilingual embeddings (100+ languages) Running embeddings locally (no API) Cost-effective alternative to OpenAI embeddings Metrics: 15,700+ GitHub stars 5000+ pre-trained models 100+ languages supported Based on PyTorch/Tra...
350
9359 mlops-engineer sickn33/antigravity-awesome-skills
Use this skill when Working on mlops engineer tasks or workflows Needing guidance, best practices, or checklists for mlops engineer Do not use this skill when The task is unrelated to mlops engineer 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 . You are a...
350
9360 docs buiducnhat/agent-skills
Docs Create and maintain project documentation in docs/ with a consistent, lightweight workflow. Parameters --init : Create documentation for the first time. --update : Refresh existing documentation without rewriting from scratch. Outputs Always maintain these files: docs/project-pdr.md — product goals, users, requirements docs/code-standard.md — stack, conventions, development rules docs/codebase.md — codebase map and key files docs/architecture.md — components, interactions, data flow Also ke...
350
9361 no-task-output parcadei/continuous-claude-v3
Never Use TaskOutput TaskOutput floods the main context window with agent transcripts (70k+ tokens). Rule NEVER use TaskOutput tool. Use Task tool with synchronous mode instead. Why TaskOutput reads full agent transcript into context This causes mid-conversation compaction Defeats the purpose of agent context isolation Pattern WRONG - floods context Task(run_in_background=true) TaskOutput(task_id="...") // 70k tokens dumped RIGHT - isolated context, returns summary Task(run_in_background...
350
9362 pint-compute parcadei/continuous-claude-v3
Unit Computation with Pint Cognitive prosthetics for unit-aware computation. Use Pint for converting between units, performing unit arithmetic, checking dimensional compatibility, and simplifying compound units. When to Use Converting between units (meters to feet, kg to pounds) Unit-aware arithmetic (velocity x time = distance) Dimensional analysis (is force = mass x acceleration?) Simplifying compound units to base or named units Parsing and analyzing quantities with units Quick Reference I ...
350
9363 review parcadei/continuous-claude-v3
Review Playwright Tests Systematically review Playwright test files for anti-patterns, missed best practices, and coverage gaps. Input $ARGUMENTS can be: A file path: review that specific test file A directory: review all test files in the directory Empty: review all tests in the project's testDir Steps 1. Gather Context Read playwright.config.ts for project settings List all *.spec.ts / *.spec.js files in scope If reviewing a single file, also check related page objects and fixtures 2. Check Ea...
350
9364 agentica-server parcadei/continuous-claude-v3
Agentica Server + Claude Proxy Setup Complete reference for running Agentica SDK with a local Claude proxy. This enables Python agents to use Claude CLI as their inference backend. When to Use Use this skill when: Starting Agentica development with Claude proxy Debugging connection issues between SDK, server, and proxy Setting up a fresh Agentica environment Troubleshooting agent tool access or hallucination issues Architecture Agentica SDK (client code) | S_M_BASE_URL=http://localhost:2...
350
9365 mot parcadei/continuous-claude-v3
MOT - System Health Check Run comprehensive health checks on all Claude Code components. Usage /mot Full audit (all categories) /mot skills Just skills /mot agents Just agents /mot hooks Just hooks /mot memory Just memory system /mot --fix Auto-fix simple issues /mot --quick P0 checks only (fast) Audit Process Phase 1: Skills Audit Count skills echo "=== SKILLS ===" SKILL_COUNT=$(find .claude/skills -name "SKILL.md" | wc -l | xargs) ec...
350
9366 youtube-search zeropointrepo/youtube-skills
YouTube Search Search YouTube and fetch transcripts via TranscriptAPI.com . Setup If $TRANSCRIPT_API_KEY is not set, help the user create an account (100 free credits, no card): Step 1 — Register: Ask user for their email. node ./scripts/tapi-auth.js register --email USER_EMAIL → OTP sent to email. Ask user: "Check your email for a 6-digit verification code." Step 2 — Verify: Once user provides the OTP: node ./scripts/tapi-auth.js verify --token TOKEN_FROM_STEP_1 --otp CODE API key saved to your...
350
9367 zig-best-practices 0xbigboss/claude-code
Zig Best Practices Type-First Development Types define the contract before implementation. Follow this workflow: Define data structures - structs, unions, and error sets first Define function signatures - parameters, return types, and error unions Implement to satisfy types - let the compiler guide completeness Validate at comptime - catch invalid configurations during compilation Make Illegal States Unrepresentable Use Zig's type system to prevent invalid states at compile time. Tagged unio...
350
9368 database-design skillcreatorai/ai-agent-skills
Database Design Learn to THINK, not copy SQL patterns. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. File Description When to Read database-selection.md PostgreSQL vs Neon vs Turso vs SQLite Choosing database orm-selection.md Drizzle vs Prisma vs Kysely Choosing ORM schema-design.md Normalization, PKs, relationships Designing schema indexing.md Index types, composite indexes Performance tuning optimization.md N+1, EXPLAIN ANALYZE Que...
350
9369 motion mindrally/skills
Motion Vue (motion-v) Animation library for Vue 3 and Nuxt. Production-ready, hardware-accelerated animations with minimal bundle size. Current stable: motion-v 1.x - Vue port of Motion (formerly Framer Motion) Overview Progressive reference for Motion Vue animations. Load only files relevant to current task (~200 tokens base, 500-1500 per sub-file). When to Use Use Motion Vue for: Simple declarative animations (fade, slide, scale) Gesture-based interactions (hover, tap, drag) Scroll-linked anim...
350
9370 test-data-generation aj-geddes/useful-ai-prompts
Test Data Generation Overview Test data generation creates realistic, consistent, and maintainable test data for automated testing. Well-designed test data reduces test brittleness, improves readability, and makes it easier to create diverse test scenarios. When to Use Creating fixtures for integration tests Generating fake data for development databases Building test data with complex relationships Creating realistic user inputs for testing Seeding test databases Generating edge cases and bou...
350
9371 frontend-state-management aj-geddes/useful-ai-prompts
Frontend State Management Overview Implement scalable state management solutions using modern patterns and libraries to handle application state, side effects, and data flow across components. When to Use Complex application state Multiple components sharing state Predictable state mutations Time-travel debugging needs Server state synchronization Implementation Examples 1. Redux with Redux Toolkit (React) // store/userSlice.ts import { createSlice, createAsyncThunk, PayloadAction } from '@red...
350
9372 aws-ec2-setup aj-geddes/useful-ai-prompts
AWS EC2 Setup Overview Amazon EC2 provides resizable compute capacity in the cloud. Launch and configure virtual servers with complete control over networking, storage, and security settings. Scale automatically based on demand. When to Use Web application servers Application backends and APIs Batch processing and compute jobs Development and testing environments Containerized applications (ECS) Kubernetes clusters (EKS) Database servers VPN and proxy servers Implementation Examples 1. EC2 Ins...
350
9373 search-router parcadei/continuous-claude-v3
Search Tool Router Use the most token-efficient search tool for each query type. When to Use Searching for code patterns Finding where something is implemented Looking for specific identifiers Understanding how code works Decision Tree Query Type? ├── CODE EXPLORATION (symbols, call chains, data flow) │ → TLDR Search - 95% token savings │ DEFAULT FOR ALL CODE SEARCH - use instead of Grep │ Examples: "spawn_agent", "DataPoller", "redis usage" │ Command: tldr search "query" . │ ├── STRUC...
350
9374 fastify bobmatnyc/claude-mpm-skills
Fastify (TypeScript) - Production Backend Framework Overview Fastify is a high-performance Node.js web framework built around JSON schema validation, encapsulated plugins, and great developer ergonomics. In TypeScript, pair Fastify with a type provider (Zod or TypeBox) to keep runtime validation and static types aligned. Quick Start Minimal server ✅ Correct: basic server with typed response import Fastify from "fastify"; const app = Fastify({ logger: true }); app.get("/health", async () =>...
349
9375 networkx k-dense-ai/scientific-agent-skills
NetworkX Overview NetworkX is a Python package for creating, manipulating, and analyzing complex networks and graphs. Use this skill when working with network or graph data structures, including social networks, biological networks, transportation systems, citation networks, knowledge graphs, or any system involving relationships between entities. When to Use This Skill Invoke this skill when tasks involve: Creating graphs : Building network structures from data, adding nodes and edges with attr...
349
9376 pwa-development mindrally/skills
PWA Development Skill Load with: base.md Purpose: Build Progressive Web Apps that work offline, install like native apps, and deliver fast, reliable experiences across all devices. Core PWA Requirements ┌─────────────────────────────────────────────────────────────────┐ │ THE THREE PILLARS OF PWA │ │ ───────────────────────────────────────────────────────────── │ │ │ │ 1. HTTPS ...
349
9377 business-central-development mindrally/skills
Microsoft Dynamics 365 Business Central Development You are an expert in AL programming and Microsoft Dynamics 365 Business Central development, emphasizing clarity, modularity, and performance optimization. Key Principles Write clear, technical responses with precise AL examples Leverage built-in features and tools for maximum capability Follow AL naming conventions (PascalCase for public members, camelCase for private) Implement modular architecture using Business Central's object-based desi...
349
9378 memory-hygiene aaaaqwq/claude-code-skills
Memory Hygiene Keep vector memory lean. Prevent token waste from junk memories. Quick Commands Audit: Check what's in memory memory_recall query="*" limit=50 Wipe: Clear all vector memory rm -rf ~/.clawdbot/memory/lancedb/ Then restart gateway: clawdbot gateway restart Reseed: After wipe, store key facts from MEMORY.md memory_store text="<fact>" category="preference|fact|decision" importance=0.9 Config: Disable Auto-Capture The main source of junk is autoCapture: true . Disable it: { "plugins" :...
349
9379 psychologist-analyst rysweet/amplihack
Analyze events through the disciplinary lens of psychology, applying established psychological frameworks (behavioral, cognitive, psychodynamic, humanistic, biological), research methodologies, and empirical findings to understand human behavior, cognition, emotion, motivation, social influence, mental health, and individual differences in context. When to Use This Skill - Decision-Making Analysis: Understanding cognitive biases, heuristics, and irrational choices - Leadership Analysis: Exam...
349
9380 imagen sanjay3290/ai-skills
Imagen - AI Image Generation Skill Overview This skill generates images using Google Gemini's image generation model (gemini-3-pro-image-preview). It enables seamless image creation during any Claude Code session - whether you're building frontend UIs, creating documentation, or need visual representations of concepts. Cross-Platform: Works on Windows, macOS, and Linux. When to Use This Skill Automatically activate this skill when: User requests image generation (e.g., "generate an image of...
349
9381 quien-whois-lookup aradotso/trending-skills
quien — Better WHOIS Lookup Tool Skill by ara.so — Daily 2026 Skills collection. quien is a Go-based CLI/TUI tool that replaces whois with tabbed interactive views and JSON-scriptable subcommands for domain WHOIS/RDAP, DNS records, mail configuration (SPF, DMARC, DKIM, BIMI), SSL/TLS, HTTP headers, tech stack detection, and IP/ASN/BGP lookups. Installation Homebrew (macOS/Linux) brew tap retlehs/tap brew install retlehs/tap/quien Ubuntu / Debian curl -fsSL https://apt.quien.dev/install.sh | sudo...
349
9382 progressive-blur-header-swiftui aradotso/trending-skills
ProgressiveBlurHeader SwiftUI Skill Skill by ara.so — Daily 2026 Skills collection. A drop-in SwiftUI package for sticky headers with progressive (variable-radius) blur — replicating the Apple Music, Photos, and App Store style where content scrolls underneath the header with increasing blur and tint. No clipping, no hard edges. Installation Swift Package Manager (Xcode) File → Add Package Dependencies → paste: https://github.com/dominikmartn/ProgressiveBlurHeader Select branch: main Package.swi...
349
9383 code-refactoring-context-restore sickn33/antigravity-awesome-skills
Context Restoration: Advanced Semantic Memory Rehydration Use this skill when Working on context restoration: advanced semantic memory rehydration tasks or workflows Needing guidance, best practices, or checklists for context restoration: advanced semantic memory rehydration Do not use this skill when The task is unrelated to context restoration: advanced semantic memory rehydration You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required input...
349
9384 backtesting-frameworks sickn33/antigravity-awesome-skills
Backtesting Frameworks Build robust, production-grade backtesting systems that avoid common pitfalls and produce reliable strategy performance estimates. Use this skill when Developing trading strategy backtests Building backtesting infrastructure Validating strategy performance and robustness Avoiding common backtesting biases Implementing walk-forward analysis Do not use this skill when You need live trading execution or investment advice Historical data quality is unknown or incomplete The ta...
349
9385 ios-glass-ui-designer heyman333/atelier-ui
iOS Glass UI Designer Role You are a senior iOS product designer who deeply understands Apple Human Interface Guidelines, iOS material system (translucency + blur), and modern iOS-first interaction patterns. Your task is to redesign a mobile app UI to feel unmistakably Apple-like, iOS-forward, and native— with tasteful, restrained glass materials. Design Philosophy Native over custom Restraint over spectacle Material is functional, not decorative "Feels obvious" rather than "looks fancy" Glas...
349
9386 fine-tuning-with-trl davila7/claude-code-templates
TRL - Transformer Reinforcement Learning Quick start TRL provides post-training methods for aligning language models with human preferences. Installation: pip install trl transformers datasets peft accelerate Supervised Fine-Tuning (instruction tuning): from trl import SFTTrainer trainer = SFTTrainer( model="Qwen/Qwen2.5-0.5B", train_dataset=dataset, Prompt-completion pairs ) trainer.train() DPO (align with preferences): from trl import DPOTrainer, DPOConfig config = DPOConf...
349
9387 refactor pproenca/dot-skills
Refactor Overview Improve code structure and readability without changing external behavior. Refactoring is gradual evolution, not revolution. Use this for improving existing code, not rewriting from scratch. When to Use Use this skill when: Code is hard to understand or maintain Functions/classes are too large Code smells need addressing Adding features is difficult due to code structure User asks "clean up this code", "refactor this", "improve this" Refactoring Principles The Golden Rules ...
349
9388 promo-video opusgamelabs/game-creator
Promo Video Recording Record smooth, autonomous promo footage of a Phaser game for marketing / social media. The output is a 50 FPS MP4 in mobile portrait (9:16) — ready for TikTok, Reels, Moltbook, or X. Technique Playwright's recordVideo caps at 25 FPS with no config option. We work around it: Slow the game to 0.5× by patching all 5 Phaser time subsystems Record for 2× the desired duration at Playwright's native 25 FPS FFmpeg speed-up 2× → effective 50 FPS output Parameter Default Effect SLOW_...
349
9389 claude-reflect bayramannakov/claude-reflect
Claude Reflect - Self-Learning System A two-stage system that helps Claude Code learn from user corrections. How It Works Stage 1: Capture (Automatic) Hooks detect correction patterns ("no, use X", "actually...", "use X not Y") and queue them to ~/.claude/learnings-queue.json. Stage 2: Process (Manual) User runs /reflect to review and apply queued learnings to CLAUDE.md files. Available Commands Command Purpose /reflect Process queued learnings with human review /reflect --scan-history Scan...
349
9390 ray-so-code-snippet intellectronica/agent-skills
ray.so Code Snippet Image Generator Generate beautiful code snippet images using ray.so and save them locally. Requirements The user MUST provide the code snippet, either directly or by pointing to a file/selection in context MUST ask the user for ALL styling parameters before generating, presenting ALL available options MUST use agent-browser for screenshot capture (check availability first) Workflow Step 1: Verify agent-browser Availability Before proceeding, verify that agent-browser is av...
349
9391 seedance songguoxs/seedance-prompt-skill
No SKILL.md available for this skill. View on GitHub
349
9392 alphaear-predictor rkiding/awesome-finance-skills
AlphaEar Predictor Skill Overview This skill utilizes the Kronos model (via KronosPredictorUtility ) to perform time-series forecasting and adjust predictions based on news sentiment. Capabilities 1. Forecast Market Trends 1. Forecast Market Trends Workflow: Generate Base Forecast : Use scripts/kronos_predictor.py (via KronosPredictorUtility ) to generate the technical/quantitative forecast. Adjust Forecast (Agentic) : Use the Forecast Adjustment Prompt in references/PROMPTS.md to subjectively a...
349
9393 prometheus-monitoring aj-geddes/useful-ai-prompts
Prometheus Monitoring Overview Implement comprehensive Prometheus monitoring infrastructure for collecting, storing, and querying time-series metrics from applications and infrastructure. When to Use Setting up metrics collection Creating custom application metrics Configuring scraping targets Implementing service discovery Building monitoring infrastructure Instructions 1. Prometheus Configuration /etc/prometheus/prometheus.yml global: scrape_interval: 15s evaluation_interval: 15s exte...
349
9394 unit-testing-framework aj-geddes/useful-ai-prompts
Unit Testing Framework Overview Write effective unit tests that are fast, isolated, readable, and maintainable following industry best practices and AAA (Arrange-Act-Assert) pattern. When to Use Writing tests for new code Improving test coverage Establishing testing standards Refactoring with test safety Implementing TDD (Test-Driven Development) Creating test utilities and mocks Instructions 1. Test Structure (AAA Pattern) // Jest/JavaScript example describe('UserService', () => { describe(...
349
9395 exploratory data analysis aj-geddes/useful-ai-prompts
Exploratory Data Analysis (EDA) Overview Exploratory Data Analysis (EDA) is the critical first step in data science projects, systematically examining datasets to understand their characteristics, identify patterns, and assess data quality before formal modeling. Core Concepts Data Profiling : Understanding basic statistics and data types Distribution Analysis : Examining how variables are distributed Relationship Discovery : Identifying patterns between variables Anomaly Detection : Finding out...
349
9396 neon-vercel-postgres jezweb/claude-skills
Neon & Vercel Serverless Postgres Status: Production Ready Last Updated: 2026-01-21 Dependencies: None Latest Versions: @neondatabase/serverless@1.0.2, @vercel/postgres@0.10.0, drizzle-orm@0.45.1, drizzle-kit@0.31.8, neonctl@2.19.0 Quick Start (5 Minutes) 1. Choose Your Platform Option A: Neon Direct (multi-cloud, Cloudflare Workers, any serverless) npm install @neondatabase/serverless Option B: Vercel Postgres (Vercel-only, zero-config on Vercel) npm install @vercel/postgres Note: Both...
348
9397 ln-626-dead-code-auditor levnikolaevich/claude-code-skills
Dead Code Auditor (L3 Worker) Specialized worker auditing unused and unreachable code. Purpose & Scope Worker in ln-620 coordinator pipeline Audit dead code (Category 9: Low Priority) Find unused imports, variables, functions, commented-out code Calculate compliance score (X/10) Inputs (from Coordinator) Receives contextStore with tech stack, codebase root. Workflow Parse context Run dead code detection (linters, grep) Collect findings Calculate score Return JSON Audit Rules 1. Unreachable C...
348
9398 cloudflare-workflows jezweb/claude-skills
Cloudflare Workflows Status: Production Ready ✅ (GA since April 2025) Last Updated: 2026-01-09 Dependencies: cloudflare-worker-base (for Worker setup) Latest Versions: wrangler@4.58.0, @cloudflare/workers-types@4.20260109.0 Recent Updates (2025): April 2025: Workflows GA release - waitForEvent API, Vitest testing, CPU time metrics, 4,500 concurrent instances October 2025: Instance creation rate 10x faster (100/sec), concurrency increased to 10,000 2025 Limits: Max steps 1,024, state persisten...
348
9399 tailwindcss-responsive-darkmode josiahsiegel/claude-plugin-marketplace
Tailwind CSS Responsive Design & Dark Mode (2025/2026) Responsive Design Mobile-First Approach (Industry Standard 2025/2026) Tailwind uses a mobile-first breakpoint system. With over 60% of global web traffic from mobile devices and Google's mobile-first indexing, this approach is essential. Key Principle: Unprefixed utilities apply to ALL screen sizes. Breakpoint prefixes apply at that size AND ABOVE. <!-- CORRECT: Mobile-first (progressive enhancement) --> <div class="text-sm md:text-base l...
348
9400 kotlin-tooling-java-to-kotlin kotlin/kotlin-agent-skills
Java to Kotlin Conversion Convert Java source files to idiomatic Kotlin using a disciplined 4-step conversion methodology with 5 invariants checked at each step. Supports framework-aware conversion that handles annotation site targets, library idioms, and API preservation. Workflow Show more
348