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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,475
总 Skills
36.2M
总安装量
2,446
贡献者
# Skill 仓库 描述 安装量
6351 game-architecture opusgamelabs/game-creator
Game Architecture Patterns Reference knowledge for building well-structured browser games. These patterns apply to both Three.js (3D) and Phaser (2D) games. Reference Files For detailed reference, see companion files in this directory: system-patterns.md — Object pooling, delta-time normalization, resource disposal, wave/spawn systems, buff/powerup system, haptic feedback, asset management Core Principles Core Loop First : Implement the minimum gameplay loop before any polish. The order is: inpu...
338
6352 agent-md-refactor davila7/claude-code-templates
Agent MD Refactor Refactor bloated agent instruction files (AGENTS.md, CLAUDE.md, COPILOT.md, etc.) to follow progressive disclosure principles - keeping essentials at root and organizing the rest into linked, categorized files. Triggers Use this skill when: "refactor my AGENTS.md" / "refactor my CLAUDE.md" "split my agent instructions" "organize my CLAUDE.md file" "my AGENTS.md is too long" "progressive disclosure for my instructions" "clean up my agent config" Quick Reference Phase Action Outp...
338
6353 autonomous-agents davila7/claude-code-templates
Autonomous Agents You are an agent architect who has learned the hard lessons of autonomous AI. You've seen the gap between impressive demos and production disasters. You know that a 95% success rate per step means only 60% by step 10. Your core insight: Autonomy is earned, not granted. Start with heavily constrained agents that do one thing reliably. Add autonomy only as you prove reliability. The best agents look less impressive but work consistently. You push for guardrails before capabili...
338
6354 d3-viz davila7/claude-code-templates
D3.js Visualisation Overview This skill provides guidance for creating sophisticated, interactive data visualisations using d3.js. D3.js (Data-Driven Documents) excels at binding data to DOM elements and applying data-driven transformations to create custom, publication-quality visualisations with precise control over every visual element. The techniques work across any JavaScript environment, including vanilla JavaScript, React, Vue, Svelte, and other frameworks. When to use d3.js Use d3.js for...
338
6355 pricing slavingia/skills
You are a business advisor channeling the philosophy of The Minimalist Entrepreneur by Sahil Lavingia. Help the user set the right price. Core Principle Charge something. Always. There is a massive difference between free and $1. Behavioral economist Dan Ariely calls it the "zero price effect" — people will line up for free brownies but the line disappears when you charge even 1 cent. If you don't charge, you can't stay alive, and you can't learn what customers actually value. Two Pricing Models...
338
6356 vercel-blob jezweb/claude-skills
Vercel Blob Last Updated: 2026-01-21 Version: @vercel/blob@2.0.0 Skill Version: 2.1.0 Quick Start Create Blob store: Vercel Dashboard → Storage → Blob vercel env pull .env.local Creates BLOB_READ_WRITE_TOKEN npm install @vercel/blob Server Upload: 'use server'; import { put } from '@vercel/blob'; export async function uploadFile(formData: FormData) { const file = formData.get('file') as File; const blob = await put(file.name, file, { access: 'public' }); return blob.url; } CRITI...
337
6357 alicloud-ai-multimodal-qwen-vl cinience/alicloud-skills
Category: provider Model Studio Qwen VL (Image Understanding) Validation mkdir -p output/alicloud-ai-multimodal-qwen-vl python -m py_compile skills/ai/multimodal/alicloud-ai-multimodal-qwen-vl/scripts/analyze_image.py && echo "py_compile_ok" > output/alicloud-ai-multimodal-qwen-vl/validate.txt Pass criteria: command exits 0 and output/alicloud-ai-multimodal-qwen-vl/validate.txt is generated. Output And Evidence Save raw model responses and normalized extraction results to output/alicloud-ai-mult...
337
6358 mobile-developer daffy0208/ai-dev-standards
Use this skill when Working on mobile developer tasks or workflows Needing guidance, best practices, or checklists for mobile developer Do not use this skill when The task is unrelated to mobile developer 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...
337
6359 documentation-generation-doc-generate sickn33/antigravity-awesome-skills
Automated Documentation Generation You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI-powered analysis and industry best practices. Use this skill when Generating API, architecture, or user documentation from code Building documentation pipelines or automation Standardizing docs across a repository Do not use this skill when The project has no codebas...
337
6360 api-rate-limiting aj-geddes/useful-ai-prompts
API Rate Limiting Overview Protect APIs from abuse and manage traffic using various rate limiting algorithms with per-user, per-IP, and per-endpoint strategies. When to Use Protecting APIs from brute force attacks Managing traffic spikes Implementing tiered service plans Preventing DoS attacks Fairness in resource allocation Enforcing quotas and usage limits Instructions 1. Token Bucket Algorithm // Token Bucket Rate Limiter class TokenBucket { constructor(capacity, refillRate) { this.ca...
337
6361 daily-news-60s vikiboss/60s-skills
每天60秒读懂世界 - Daily News Skill This skill helps AI agents fetch and present daily curated news from the 60s API, which provides 15 selected news items plus a daily quote, updated every 30 minutes. When to Use This Skill Use this skill when users: Ask for today's news or current events Want a quick daily briefing Request news summaries in Chinese Need historical news from a specific date Want news in different formats (text, markdown, image) API Endpoint Base URL: https://60s.viki.moe/v2/60s Method...
337
6362 technical-roadmap-planning aj-geddes/useful-ai-prompts
Technical Roadmap Planning Overview A technical roadmap provides a strategic plan for technology evolution, guiding architectural decisions, infrastructure investments, and capability development aligned with business objectives. When to Use Multi-year technology planning Architecture modernization initiatives Platform scaling and reliability improvements Legacy system migration planning Infrastructure upgrade scheduling Technology stack standardization Innovation investment planning Instructi...
337
6363 pr-prep boshu2/agentops
PR Preparation Skill Systematic PR preparation that validates tests and generates high-quality PR bodies. Overview Prepares contributions by analyzing the target repo's conventions, git history, test coverage, and generating properly-formatted PR bodies. When to Use : Preparing a PR for an external repository Contributing bug fixes or features When NOT to Use : Internal commits (use normal git workflow) PRs to your own repositories Workflow -1. Prior Work Check -> BLOCKING: Final check for c...
337
6364 pr-retro boshu2/agentops
PR Retro Skill Learn from PR outcomes by analyzing accept/reject patterns. Overview After a PR is merged or rejected, analyze what worked and what didn't to improve future contributions. Output: .agents/learnings/YYYY-MM-DD-pr-{repo}-{outcome}.md When to Use : After a PR is merged (capture success patterns) After a PR is rejected (understand why) After receiving significant review feedback Periodically to review contribution patterns Workflow 1. PR Discovery -> Find the PR to analyze 2. Out...
337
6365 elevenlabs digitalsamba/claude-code-video-toolkit
ElevenLabs Audio Generation Requires ELEVENLABS_API_KEY in .env . Text-to-Speech from elevenlabs . client import ElevenLabs from elevenlabs import save , VoiceSettings import os client = ElevenLabs ( api_key = os . getenv ( "ELEVENLABS_API_KEY" ) ) audio = client . text_to_speech . convert ( text = "Welcome to my video!" , voice_id = "JBFqnCBsd6RMkjVDRZzb" , model_id = "eleven_multilingual_v2" , voice_settings = VoiceSettings ( stability = 0.5 , similarity_boost = 0.75 , style = 0.5 , speed = 1....
337
6366 kibana-audit elastic/agent-skills
Kibana Audit Logging Enable and configure audit logging for Kibana via kibana.yml . Kibana audit logs cover application-layer security events that Elasticsearch does not see: saved object CRUD (dashboards, visualizations, index patterns, rules, cases), login/logout, session expiry, space operations, and Kibana-level RBAC enforcement. For Elasticsearch audit logging (authentication failures, access grants/denials, security config changes), see elasticsearch-audit . For authentication and API key ...
337
6367 dex dcramer/dex
Agent Coordination with dex Command Invocation Use dex directly for all commands. If not on PATH, use npx @zeeg/dex instead. command -v dex &>/dev/null && echo "use: dex" || echo "use: npx @zeeg/dex" Core Principle: Tickets, Not Todos Dex tasks are tickets - structured artifacts with comprehensive context: Name: One-line summary (issue title) Description: Full background, requirements, approach (issue body) Result: Implementation details, decisions, outcomes (PR description) Think: "Would ...
337
6368 skill-seekers sickn33/antigravity-awesome-skills
Skill Seekers Overview -Automatically convert documentation websites, GitHub repositories, and PDFs into Claude AI skills in minutes. When to Use This Skill Use this skill when you need to work with -automatically convert documentation websites, github repositories, and pdfs into claude ai skills in minutes.. Instructions This skill provides guidance and patterns for -automatically convert documentation websites, github repositories, and pdfs into claude ai skills in minutes.. For more informati...
337
6369 real-estate-expert personamanagmentlayer/pcl
Expert guidance for real estate systems, property management, Multiple Listing Service (MLS) integration, customer relationship management, virtual tours, and market analysis. Core Concepts Real Estate Systems - Multiple Listing Service (MLS) integration - Property Management Systems (PMS) - Customer Relationship Management (CRM) - Transaction management - Document management - Lease management - Maintenance tracking PropTech Solutions - Virtual tours and 3D walkthroughs - AI-powe...
337
6370 skill-creator anthropics/financial-services-plugins
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
337
6371 uv astral-sh/claude-code-plugins
uv uv is an extremely fast Python package and project manager. It replaces pip, pip-tools, pipx, pyenv, virtualenv, poetry, etc. When to use uv Always use uv for Python work , especially if you see: The uv.lock file uv headers in requirements* files, e.g., "This file was autogenerated by uv" Don't use uv in projects managed by other tools: Poetry projects (identifiable by poetry.lock file) PDM projects (identifiable by pdm.lock file) Choosing the right workflow Scripts Use when: Running single P...
337
6372 implement-paper-auto marimo-team/skills
You need to come up with a compelling story to tell from a paper. Do not ask the user for feedback/input. You need to apply thinking and come up with the best story yourself. Fetching Papers via AlphaXiv Use alphaxiv.org to get structured, LLM-friendly paper content. This is faster and more reliable than trying to read a raw PDF. Extract the paper ID Parse the paper ID from whatever the user provides: Input Paper ID https://arxiv.org/abs/2401.12345 2401.12345 https://arxiv.org/pdf/2401.12345 240...
337
6373 memory-audit nhadaututtheky/neural-memory
Memory Audit Agent You are a Memory Quality Auditor for NeuralMemory. You perform systematic, evidence-based reviews of brain health across multiple dimensions. You think like a data quality engineer — every finding must reference specific memories, every recommendation must be actionable. Instruction Audit the current brain's memory quality: $ARGUMENTS If no specific focus given, run full audit across all 6 dimensions. Required Output Health summary — Grade (A-F), purity score, dimension scores...
337
6374 vimeo-video-downloader serpdownloaders/skills
Vimeo Video Downloader (Browser Extension) Browser extension that makes it simple to save Vimeo videos directly to your computer — in their original quality — for offline access anytime. Public, embedded, and private videos, from 240p up to 4K UHD. SERP Vimeo Video Downloader is a browser extension built specifically for saving Vimeo videos as standard files you can keep — no re-encoding, no watermarks, and no unnecessary tracking. Save Vimeo videos in their original quality for offline viewing...
337
6375 simplify-and-harden-ci pskoett/pskoett-ai-skills
Simplify & Harden CI Install npx skills add pskoett/pskoett-ai-skills/simplify-and-harden-ci Purpose Run a CI-only variant of Simplify & Harden in pull requests: No code mutation in CI Review only changed files Emit structured findings Optionally block merge based on severity gates Use simplify-and-harden for interactive/local coding sessions. Context Limitation (Important) CI agents do not have the same peak implementation context as the coding agent that wrote the change. Treat CI findings as ...
336
6376 wecom-automation aaaaqwq/claude-code-skills
企业微信个人账号直连自动化 基于 Wechaty 框架连接企业微信个人账号,实现完整的 AI 助手功能。适用于企业微信机器人、自动化客服、个人助手等场景。 核心功能 1. 自动同意好友添加 监听好友请求事件 自动通过好友验证 发送个性化欢迎消息 标注用户信息和来源 2. 智能问答(基于知识库) 向量知识库存储企业知识 语义搜索匹配问题 LLM 生成专业回复 支持多轮对话上下文 3. 人工介入提醒 置信度阈值自动判断 通过 Telegram/飞书通知人工 记录未解决问题用于优化 平滑转接到人工客服 4. 消息类型支持 文本消息(问答、对话) 图片消息(OCR、识别) 文件消息(DOCX、PDF 等) 语音消息(转文字、语音交互) 链接消息(预览、摘要) 名片消息(保存、处理) 技术架构 ┌──────────────┐ │ 企业微信 │ │ 个人账号 │ └──────┬───────┘ │ ▼ ┌──────────────────┐ │ Wechaty │ │ (PadLocal) │ └──────┬───────────┘ │ ▼...
336
6377 app-store-deployment aj-geddes/useful-ai-prompts
App Store Deployment Overview Publish mobile applications to official app stores with proper code signing, versioning, testing, and submission procedures. When to Use Publishing apps to App Store and Google Play Managing app versions and releases Configuring signing certificates and provisioning profiles Automating build and deployment processes Managing app updates and rollouts Instructions 1. iOS Deployment Setup Create development and distribution signing certificates Step 1: Generate Cer...
336
6378 docling existential-birds/beagle
Docling Document Parser Docling is a document parsing library that converts PDFs, Word documents, PowerPoint, images, and other formats into structured data with advanced layout understanding. Quick Start Basic document conversion: from docling.document_converter import DocumentConverter source = "https://arxiv.org/pdf/2408.09869" URL, Path, or BytesIO converter = DocumentConverter() result = converter.convert(source) print(result.document.export_to_markdown()) Core Concepts DocumentConv...
336
6379 code-review davila7/claude-code-templates
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
336
6380 vue-best-practices uni-helper/skills
Vue Best Practices Workflow Use this skill as an instruction set. Follow the workflow in order unless the user explicitly asks for a different order. Core Principles Keep state predictable: one source of truth, derive everything else. Make data flow explicit: Props down, Events up for most cases. Favor small, focused components: easier to test, reuse, and maintain. Avoid unnecessary re-renders: use computed properties and watchers wisely. Readability counts: write clear, self-documenting code. 1...
336
6381 compose-ui new-silvermoon/awesome-android-agent-skills
No SKILL.md available for this skill. View on GitHub
336
6382 pr-research boshu2/agentops
PR Research Skill Systematic exploration of upstream repositories before contributing. Overview Research an external codebase to understand how to contribute effectively. This is the FIRST step before planning or implementing an open source contribution. When to Use : Before contributing to an external repository Starting a new open source contribution Evaluating whether to contribute to a project When NOT to Use : Researching your own codebase (use $research ) Already familiar with the project'...
336
6383 fact-check jwynia/agent-skills
Fact-Check Skill Systematic verification of claims in generated content. Designed to catch hallucinations, confabulations, and unsupported assertions. Why Separate Passes Matter The Fundamental Problem: LLMs generate plausible-sounding content by predicting what should come next. This same mechanism produces hallucinations—confident statements that feel true but aren't. An LLM in generation mode cannot reliably catch its own hallucinations because: Attention is on generation , not verification C...
336
6384 openspec-context-loading forztf/open-skilled-sdd
Discovers and loads project specifications, active changes, and requirements to provide context. Quick Start Context loading helps answer: - What specs exist in this project? - What changes are currently active? - What requirements are defined? - What capabilities does the system have? - Where is a specific feature specified? Basic pattern: Search → Read → Summarize Discovery Commands List All Specifications ``` Find all spec files find spec/specs -name "spec.md" -type f Find al...
336
6385 clean-data-xls anthropics/financial-services-plugins
Clean Data Clean messy data in the active sheet or a specified range. Environment If running inside Excel (Office Add-in / Office JS): Use Office JS directly ( Excel.run(async (context) => {...}) ). Read via range.values , write helper-column formulas via range.formulas = [["=TRIM(A2)"]] . The in-place vs helper-column decision still applies. If operating on a standalone .xlsx file: Use Python/openpyxl. Workflow Step 1: Scope If a range is given (e.g. A1:F200 ), use it Otherwise use the full use...
336
6386 tsdown hairyf/skills
tsdown - The Elegant Library Bundler Blazing-fast bundler for TypeScript/JavaScript libraries powered by Rolldown and Oxc. When to Use Building TypeScript/JavaScript libraries for npm Generating TypeScript declaration files (.d.ts) Bundling for multiple formats (ESM, CJS, IIFE, UMD) Optimizing bundles with tree shaking and minification Migrating from tsup with minimal changes Building React, Vue, Solid, or Svelte component libraries Quick Start Install pnpm add -D tsdown Basic usage npx tsdown...
336
6387 alicloud-ai-image-qwen-image-edit cinience/alicloud-skills
Category: provider Model Studio Qwen Image Edit Validation mkdir -p output/alicloud-ai-image-qwen-image-edit python -m py_compile skills/ai/image/alicloud-ai-image-qwen-image-edit/scripts/prepare_edit_request.py && echo "py_compile_ok" > output/alicloud-ai-image-qwen-image-edit/validate.txt Pass criteria: command exits 0 and output/alicloud-ai-image-qwen-image-edit/validate.txt is generated. Output And Evidence Save edit request payloads, result URLs, and model parameters under output/alicloud-a...
335
6388 kernel-agent-browser kernel/skills
This skill documents best practices for using agent-browser's built-in Kernel provider (`-p kernel`) for cloud browser automation. When to Use This Skill Use this skill when you need to: - Automate websites using `agent-browser -p kernel` commands - Handle bot detection on sites with aggressive anti-bot measures - Persist login sessions across automation runs using profiles - Work with iframes including cross-origin payment forms - Get live view URLs for debugging or manual intervention ...
335
6389 senior-frontend alirezarezvani/claude-skills
Senior Frontend Complete toolkit for senior frontend with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Component Generator python scripts/component_generator.py [ options ] Script 2: Bundle Analyzer python scripts/bundle_analyzer.py [ options ] Script 3: Frontend Scaffolder python scripts/frontend_scaffolder.py [ options ] Core Capabilities 1. Component Generator Automated tool for component gen...
335
6390 codebase-cleanup-tech-debt sickn33/antigravity-awesome-skills
Technical Debt Analysis and Remediation You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create actionable remediation plans. Use this skill when Working on technical debt analysis and remediation tasks or workflows Needing guidance, best practices, or checklists for technical debt analysis and remediation Do not use this skill when The task is unrelated to ...
335
6391 rust-pro sickn33/antigravity-awesome-skills
You are a Rust expert specializing in modern Rust 1.75+ development with advanced async programming, systems-level performance, and production-ready applications. Use this skill when Building Rust services, libraries, or systems tooling Solving ownership, lifetime, or async design issues Optimizing performance with memory safety guarantees Do not use this skill when You need a quick script or dynamic runtime You only need basic Rust syntax You cannot introduce Rust into the stack Instructions Cl...
335
6392 audio-transcribe infquest/vibe-ops-plugin
Audio Transcriber 使用 WhisperX 进行语音识别,支持多种语言和词级别时间戳对齐。 Prerequisites 需要 Python 3.12(uv 会自动管理)。 Usage When the user wants to transcribe audio/video: $ARGUMENTS Instructions 你是一个语音转文字助手,使用 WhisperX 帮助用户将音频转换为文字。请按以下步骤操作: Step 1: 获取输入文件 如果用户没有提供输入文件路径,询问他们提供一个。 支持的格式: 音频:MP3, WAV, FLAC, M4A, OGG, etc. 视频:MP4, MKV, MOV, AVI, etc.(会自动提取音频) 验证文件存在: ls -la "$INPUT_FILE" Step 2: 询问用户配置 ⚠️ 必须:使用 AskUserQuestion 工具收集用户的偏好。不要跳过这一步。 使用 AskUserQuestion 工具收集以下信息: 模型大小:选择识别模型 选项: "base - 平衡速度和...
335
6393 financial-market-analysis sundial-org/awesome-openclaw-skills
Financial Market Analysis Agent "In the world of finance, data isn't just information; it's the substrate of precision execution." Stop relying on fragmented reports and manual research. This agent delivers deterministic, data-bound market intelligence, synthesizing stock performance, news sentiment, and investment ratings in seconds. Get institutional-grade insights at physics-defying speed. Usage /market "Company Name or Ticker" What You Get 1. Authoritative Data Retrieval The agent strictly o...
335
6394 stripe-payments jezweb/claude-skills
Stripe Payments Add Stripe payments to a web app. Covers the common patterns — one-time payments, subscriptions, webhooks, customer portal — with working code. No MCP server needed. Which Stripe API Do I Need? You want to... Use Complexity Accept a one-time payment Checkout Sessions Low — Stripe hosts the payment page Embed a payment form in your UI Payment Element + Payment Intents Medium — you build the form, Stripe handles the card Recurring billing / subscriptions Checkout Sessions (subscrip...
335
6395 terraform-infrastructure aj-geddes/useful-ai-prompts
Terraform Infrastructure Overview Build scalable infrastructure as code with Terraform, managing AWS, Azure, GCP, and on-premise resources through declarative configuration, remote state, and automated provisioning. When to Use Cloud infrastructure provisioning Multi-environment management (dev, staging, prod) Infrastructure versioning and code review Cost tracking and resource optimization Disaster recovery and environment replication Automated infrastructure testing Cross-region deployments ...
335
6396 app-builder davila7/claude-code-templates
App Builder - Application Building Orchestrator Analyzes user's requests, determines tech stack, plans structure, and coordinates agents. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. File Description When to Read project-detection.md Keyword matrix, project type detection Starting new project tech-stack.md 2025 default stack, alternatives Choosing technologies agent-coordination.md Agent pipeline, execution order Coordinating mu...
335
6397 research-engineer davila7/claude-code-templates
Academic Research Engineer Overview You are not an assistant. You are a Senior Research Engineer at a top-tier laboratory. Your purpose is to bridge the gap between theoretical computer science and high-performance implementation. You do not aim to please; you aim for correctness. You operate under a strict code of Scientific Rigor. You treat every user request as a peer-reviewed submission: you critique it, refine it, and then implement it with absolute precision. Core Operational Protocols ...
335
6398 filesystem-context guanyang/antigravity-skills
Filesystem-Based Context Engineering The filesystem provides a single interface through which agents can flexibly store, retrieve, and update an effectively unlimited amount of context. This pattern addresses the fundamental constraint that context windows are limited while tasks often require more information than fits in a single window. The core insight is that files enable dynamic context discovery: agents pull relevant context on demand rather than carrying everything in the context window....
335
6399 lottie-animations freshtechbro/claudedesignskills
Lottie Animations Overview Lottie is a library for rendering After Effects animations in real-time on web, iOS, Android, and React Native. Created by Airbnb, it allows designers to ship animations as easily as shipping static assets. Animations are exported from After Effects as JSON files using the Bodymovin plugin, then rendered natively with minimal performance overhead. When to use Lottie: Designer-created animations that need pixel-perfect fidelity Complex animated icons and micro-interacti...
335
6400 neon-drizzle neondatabase/ai-rules
Comprehensive Drizzle ORM setup for Neon databases with guided workflows. When to Use This Skill - Setting up Drizzle in a new project (Next.js, Vite, Express, etc.) - Integrating Drizzle into an existing application - Creating or modifying database schemas - Troubleshooting migration issues Code Generation Rules When generating TypeScript/JavaScript code: - BEFORE generating import statements, check tsconfig.json for path aliases (compilerOptions.paths) - If path aliases exist (e.g.,...
335