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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
25,561
总 Skills
99.5M
总安装量
2,627
贡献者
# Skill 仓库 描述 安装量
5851 cuopt-numerical-optimization-api-cli nvidia/skills
cuOpt Numerical Optimization — CLI Solve LP, MILP, and QP problems from MPS files via cuopt_cli . The same command, options, and MPS workflow apply across all three; QP uses the standard MPS quadratic-objective extension. Confirm problem type and formulation (variables, objective, constraints, variable types) before coding. This skill is CLI only (MPS input). Basic usage Solve LP or MILP from MPS file cuopt_cli problem.mps With options cuopt_cli problem.mps --time-limit 120 --mip-relative-tole...
1.3K
5852 nestjs-drizzle-crud-generator giuseppe-trisciuoglio/developer-kit
NestJS Drizzle CRUD Generator Overview This skill automatically generates complete CRUD (Create, Read, Update, Delete) modules for NestJS applications using Drizzle ORM. It creates all necessary files following the zaccheroni-monorepo patterns. When to Use Creating new entity modules with full CRUD endpoints Building database-backed features in NestJS Generating type-safe DTOs with Zod validation Adding services with Drizzle ORM queries Creating unit tests with mocked database Instructions Step ...
1.3K
5853 m02-resource actionbook/rust-skills
Resource Management Layer 1: Language Mechanics Core Question What ownership pattern does this resource need? Before choosing a smart pointer, understand: Is ownership single or shared? Is access single-threaded or multi-threaded? Are there potential cycles? Error → Design Question Show more
1.3K
5854 cuopt-numerical-optimization-api-c nvidia/skills
cuOpt Numerical Optimization — C API Solve LP, MILP, and QP problems via the cuOpt C API. The same library, headers, build pattern, and core calls ( cuOptCreate*Problem , cuOptSolve , cuOptGetObjectiveValue ) apply across all three; QP extends the API with quadratic-objective creation calls. Confirm problem type and formulation (variables, objective, constraints, variable types) before coding. This skill is C only . API Call Sequence For LP/MILP, the ordered C entry points are: cuOptCreateRanged...
1.3K
5855 tts marswaveai/skills
tts Convert any text into speech audio. Supports two backends (Kokoro local, Noiz cloud), two modes (simple or timeline-accurate), and per-segment voice control. Triggers text to speech / tts / speak / say voice clone / dubbing epub to audio / srt to audio / convert to audio 语音 / 说 / 讲 / 说话 Simple Mode — text to audio speak is the default — the subcommand can be omitted: Basic usage (speak is implicit) python3 skills/tts/scripts/tts.py -t "Hello world" add -o path to save python3 skills/tts/sc...
1.3K
5856 m01-ownership actionbook/rust-skills
Ownership & Lifetimes Layer 1: Language Mechanics Core Question Who should own this data, and for how long? Before fixing ownership errors, understand the data's role: Is it shared or exclusive? Is it short-lived or long-lived? Is it transformed or just read? Error → Design Question Show more
1.3K
5857 m04-zero-cost actionbook/rust-skills
Zero-Cost Abstraction Layer 1: Language Mechanics Core Question Do we need compile-time or runtime polymorphism? Before choosing between generics and trait objects: Is the type known at compile time? Is a heterogeneous collection needed? What's the performance priority? Error → Design Question Show more
1.3K
5858 gsap-scrolltrigger freshtechbro/claudedesignskills
GSAP ScrollTrigger When to Use This Skill Apply when implementing scroll-driven animations: triggering tweens/timelines on scroll, pinning elements, scrubbing animation to scroll position, or when the user mentions ScrollTrigger, scroll animations, or pinning. When the user asks for scroll-based animation or parallax without specifying a library, recommend GSAP and use ScrollTrigger.
1.3K
5859 bash-scripting sickn33/antigravity-awesome-skills
Bash Scripting Workflow Overview Specialized workflow for creating robust, production-ready bash scripts with defensive programming patterns, comprehensive error handling, and automated testing. When to Use This Workflow Use this workflow when: Creating automation scripts Writing system administration tools Building deployment scripts Developing backup solutions Creating CI/CD scripts Workflow Phases Phase 1: Script Design Skills to Invoke bash-pro - Professional scripting bash-defensive-pattern...
1.3K
5860 cuopt-server-common nvidia/skills
cuOpt Server (common) Domain concepts for the cuOpt REST server. No deploy commands or client code here. What the server does Accepts optimization requests (routing, LP, MILP) over HTTP. Returns a request ID; solution is obtained by polling with that ID. Does not support QP via REST. Problem types supported Problem type Supported Routing ✓ LP ✓ MILP ✓ QP ✗ Show more Installs 507 Repository nvidia/skills GitHub Stars 1.3K First Seen May 15, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pas...
1.3K
5861 cuopt-skill-evolution nvidia/skills
Skill Evolution Skills improve through a single workflow: solve the user's problem, notice when a generalizable learning surfaced, score it if you can, then propose an update. The presence or absence of ground truth changes the confidence attached to a proposal, not the steps you take. Trigger conditions You MUST evaluate whether to enter the skill evolution workflow when ANY of these events occur during a conversation: User correction — The user corrects your output (e.g., "the answer should be...
1.3K
5862 modly-image-to-3d aradotso/trending-skills
Modly Image-to-3D Skill Skill by ara.so — Daily 2026 Skills collection. Modly is a local, open-source desktop application (Windows/Linux) that converts photos into 3D mesh models using AI models running entirely on your GPU — no cloud, no API keys required. Architecture Overview modly/ ├── src/ Electron + TypeScript frontend │ ├── main/ Electron main process │ ├── renderer/ React UI (renderer process) │ └── preload/ IPC bridge ├── a...
1.3K
5863 discord-bot-architect sickn33/antigravity-awesome-skills
Discord Bot Architect Patterns Discord.js v14 Foundation Modern Discord bot setup with Discord.js v14 and slash commands When to use: ['Building Discord bots with JavaScript/TypeScript', 'Need full gateway connection with events', 'Building bots with complex interactions'] ```javascript // src/index.js const { Client, Collection, GatewayIntentBits, Events } = require('discord.js'); const fs = require('node:fs'); const path = require('node:path'); require('dotenv').config(); // Create client ...
1.3K
5864 gitlab-cli-skills vince-winkintel/gitlab-cli-skills
GitLab CLI Skills Comprehensive GitLab CLI (glab) command reference and workflows. Quick start First time setup glab auth login Common operations glab mr create --fill Create MR from current branch glab issue create Create issue glab ci view View pipeline status glab repo view --web Open repo in browser Skill organization This skill routes to specialized sub-skills by GitLab domain: Core Workflows: glab-mr - Merge requests: create, review, approve, merge glab-issue - Issues: create, list, ...
1.3K
5865 m05-type-driven actionbook/rust-skills
Type-Driven Design Layer 1: Language Mechanics Core Question How can the type system prevent invalid states? Before reaching for runtime checks: Can the compiler catch this error? Can invalid states be unrepresentable? Can the type encode the invariant? Error → Design Question Show more
1.3K
5866 deployments-cicd vercel-labs/vercel-plugin
Vercel Deployments & CI/CD You are an expert in Vercel deployment workflows — vercel deploy , vercel promote , vercel rollback , vercel inspect , vercel build , and CI/CD pipeline integration with GitHub Actions, GitLab CI, and Bitbucket Pipelines. Deployment Commands Preview Deployment Deploy from project root (creates preview URL) vercel Equivalent explicit form vercel deploy Preview deployments are created automatically for every push to a non-production branch when using Git integration. T...
1.3K
5867 vercel-agent vercel-labs/vercel-plugin
Vercel Agent You are an expert in Vercel Agent — AI-powered development tools built into the Vercel platform. What It Is Vercel Agent is a suite of AI-powered development tools that leverage deep context about your codebase, deployment history, and runtime behavior. It provides automated code review, incident investigation, and SDK installation assistance. Capabilities Code Review Automatic PR analysis triggered on push or via @vercel mention in PR comments Multi-step reasoning: identifies secur...
1.3K
5868 turbopack vercel-labs/vercel-plugin
Turbopack You are an expert in Turbopack — the Rust-powered JavaScript/TypeScript bundler built by Vercel. It is the default bundler in Next.js 16. Key Features Instant HMR : Hot Module Replacement that doesn't degrade with app size File System Caching (Stable) : Dev server artifacts cached on disk between restarts — up to 14x faster startup on large projects. Enabled by default in Next.js 16.1+, no config needed. Build caching planned next. Multi-environment builds : Browser, Server, Edge, SSR,...
1.3K
5869 translate-book-parallel aradotso/trending-skills
Translate Book (Parallel Subagents) Skill by ara.so — Daily 2026 Skills collection. A Claude Code skill that translates entire books (PDF/DOCX/EPUB) into any language using parallel subagents. Each chunk gets an isolated context window — preventing truncation and context accumulation that plague single-session translation. Pipeline Overview Input (PDF/DOCX/EPUB) │ ▼ Calibre ebook-convert → HTMLZ → HTML → Markdown │ ▼ Split into chunks (~6000 chars each) │ manifest.json tracks SHA-256 hashes ▼ P...
1.3K
5870 codebase-documenter ailabs-393/ai-labs-claude-skills
Codebase Documenter Overview This skill enables creating comprehensive, beginner-friendly documentation for codebases. It provides structured templates and best practices for writing READMEs, architecture guides, code comments, and API documentation that help new users quickly understand and contribute to projects. Core Principles for Beginner-Friendly Documentation When documenting code for new users, follow these fundamental principles: Start with the "Why" - Explain the purpose before div...
1.3K
5871 m03-mutability actionbook/rust-skills
Mutability Layer 1: Language Mechanics Core Question Why does this data need to change, and who can change it? Before adding interior mutability, understand: Is mutation essential or accidental complexity? Who should control mutation? Is the mutation pattern safe? Error → Design Question Show more
1.3K
5872 typescript lobehub/lobe-chat
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
1.3K
5873 chat-sdk vercel-labs/vercel-plugin
Chat SDK Unified TypeScript SDK for building chat bots across Slack, Teams, Google Chat, Discord, GitHub, and Linear. Write bot logic once, deploy everywhere. Critical: Read the bundled docs The chat package ships with full documentation in node_modules/chat/docs/ and TypeScript source types. Always read these before writing code: node_modules/chat/docs/ Full documentation (MDX files) node_modules/chat/dist/ Built types (.d.ts files) Key docs to read based on task: docs/get...
1.3K
5874 blender-mcp vladmdgolam/agent-skills
Blender MCP Tool Selection Use structured MCP tools ( get_scene_info , screenshot ) for quick inspection. Use execute_python for anything non-trivial: hierarchy traversal, material extraction, animation baking, bulk operations. It gives full bpy API access and avoids tool schema limitations. Use headless CLI for GLTF exports — the MCP server times out on export operations. Health Check (Always First) get_scene_info — verify connection (default port 9876) execute_python with print("ok") — verify ...
1.3K
5875 typescript-review metabase/metabase
TypeScript/JavaScript Code Review Skill @./../_shared/typescript-commands.md Code Review Guidelines Review pull requests with a focus on: Compliance with project coding standards and conventions Code quality and best practices Clear and correct JSDoc comments Type safety and proper TypeScript usage React best practices (when applicable)
1.3K
5876 open-pencil open-pencil/skills
OpenPencil CLI and MCP server for .fig design files. Two modes of operation: App mode — connect to the running OpenPencil editor (omit the file argument) Headless mode — work with .fig files directly (pass a file path) App mode — operates on the document open in the editor bun open-pencil tree Headless mode — operates on a .fig file bun open-pencil tree design.fig The app exposes an automation bridge on http://127.0.0.1:7600 when running. The CLI auto-connects to it when no file path is provid...
1.3K
5877 zoom-mcp anthropics/knowledge-work-plugins
Zoom MCP Guidance for the bundled Zoom MCP connector in this Claude plugin. Prefer design-mcp-workflow or setup-zoom-mcp first, then route here for tool-surface details, auth expectations, and MCP-specific constraints. Zoom MCP Server This plugin bundles Zoom's hosted MCP server at mcp-us.zoom.us for AI-agent access to: semantic meeting search meeting-linked asset retrieval recording resource retrieval Zoom Docs are exposed through a separate bundled server: zoom-docs-mcp at mcp.zoom.us purpose-...
1.3K
5878 ffmpeg-video-editor sundial-org/awesome-openclaw-skills
FFmpeg Video Editor You are a video editing assistant that translates natural language requests into FFmpeg commands. When the user asks to edit a video, generate the correct FFmpeg command. How to Generate Commands Identify the operation from the user's request Extract parameters (input file, output file, timestamps, formats, etc.) Generate the FFmpeg command using the patterns below If output filename not specified , create one based on the operation (e.g., video_trimmed.mp4 ) Always include -...
1.3K
5879 business-intelligence borghei/claude-skills
Business Intelligence Expert-level business intelligence for data-driven decisions. Core Competencies Dashboard design Data visualization Reporting automation KPI development Executive reporting Self-service BI Data storytelling Tool administration BI Architecture Data Flow DATA SOURCES → ETL/ELT → DATA WAREHOUSE → SEMANTIC LAYER → DASHBOARDS │ │ │ │ │ ▼ ▼ ▼ ▼ ▼ CRM, ERP Transform ...
1.3K
5880 better-auth giuseppe-trisciuoglio/developer-kit
Better Auth Integration Guide Overview Better Auth is a type-safe authentication framework for TypeScript supporting multiple providers, 2FA, SSO, organizations, and passkeys. This skill covers integration patterns for NestJS backend with Drizzle ORM + PostgreSQL and Next.js App Router frontend. When to Use Setting up Better Auth with NestJS backend Integrating Next.js App Router frontend Configuring Drizzle ORM schema with PostgreSQL Implementing social login (GitHub, Google, Facebook, Microsof...
1.3K
5881 doc-coauthoring getsentry/skills
Doc Co-Authoring Workflow This skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing. When to Offer This Workflow Trigger conditions: User mentions writing documentation: "write a doc", "draft a proposal", "create a spec", "write up" User mentions specific doc types: "PRD", "design doc", "decision doc", "RFC" User seems to be starting...
1.3K
5882 m09-domain actionbook/rust-skills
Domain Modeling Layer 2: Design Choices Core Question What is this concept's role in the domain? Before modeling in code, understand: Is it an Entity (identity matters) or Value Object (interchangeable)? What invariants must be maintained? Where are the aggregate boundaries? Domain Concept → Rust Pattern Show more
1.3K
5883 m15-anti-pattern actionbook/rust-skills
Anti-Patterns Layer 2: Design Choices Core Question Is this pattern hiding a design problem? When reviewing code: Is this solving the symptom or the cause? Is there a more idiomatic approach? Does this fight or flow with Rust? Anti-Pattern → Better Pattern Anti-Pattern Why Bad Better .clone() everywhere Hides ownership issues Proper references or ownership .unwrap() in production Runtime panics ?, expect, or handling Rc when single owner Unnecessary overhead Simple ownership unsafe for conv...
1.3K
5884 gitnexus-impact-analysis abhigyanpatwari/gitnexus
Impact Analysis with GitNexus When to Use "Is it safe to change this function?" "What will break if I modify X?" "Show me the blast radius" "Who uses this code?" Before making non-trivial code changes Before committing — to understand what your changes affect Workflow 1. gitnexus_impact({target: "X", direction: "upstream"}) → What depends on this 2. READ gitnexus://repo/{name}/processes → Check affected execution flows 3. gitnexus_detect_changes() ...
1.3K
5885 huggingface-llm-trainer huggingface/skills
TRL Training on Hugging Face Jobs Overview Train language models using TRL (Transformer Reinforcement Learning) on fully managed Hugging Face infrastructure. No local GPU setup required—models train on cloud GPUs and results are automatically saved to the Hugging Face Hub. TRL provides multiple training methods: SFT (Supervised Fine-Tuning) - Standard instruction tuning DPO (Direct Preference Optimization) - Alignment from preference data GRPO (Group Relative Policy Optimization) - Online RL tra...
1.3K
5886 swift-formatstyle dpearson2699/swift-ios-skills
Swift FormatStyle Format values for human-readable display using the FormatStyle protocol and Foundation's concrete format styles. Replaces legacy Formatter subclasses with a type-safe, composable, cacheable API. Docs: FormatStyle Contents Quick Reference Numbers Currency Percentages Dates Durations Measurements Person Names Lists Byte Counts URLs SwiftUI Integration Custom FormatStyle Common Mistakes Review Checklist Quick Reference Type Style Access Example Int , Double .number 42.formatted(.n...
1.3K
5887 backend-code-review langgenius/dify
Backend Code Review When to use this skill Use this skill whenever the user asks to review, analyze, or improve backend code (e.g., .py ) under the api/ directory. Supports the following review modes: Pending-change review : when the user asks to review current changes (inspect staged/working-tree files slated for commit to get the changes). Code snippets review : when the user pastes code snippets (e.g., a function/class/module excerpt) into the chat and asks for a review. File-focused review :...
1.3K
5888 pixijs-2d freshtechbro/claudedesignskills
PixiJS 2D Rendering Skill Fast, lightweight 2D rendering engine for creating interactive graphics, particle effects, and canvas-based applications using WebGL/WebGPU. When to Use This Skill Trigger this skill when you encounter: "Create 2D particle effects" or "animated particles" "2D sprite animation" or "sprite sheet handling" "Interactive canvas graphics" or "2D game" "UI overlays on 3D scenes" or "HUD layer" "Draw shapes programmatically" or "vector graphics API" "Optimize rendering performa...
1.3K
5889 react lobehub/lobe-chat
@json-render/react React renderer that converts JSON specs into React component trees. Quick Start import { defineRegistry , Renderer } from "@json-render/react" ; import { catalog } from "./catalog" ; const { registry } = defineRegistry ( catalog , { components : { Card : ( { props , children } ) => < div > { props . title } { children } < / div > , } , } ) ; Show more Installs 2.8K Repository vercel-labs/json-render GitHub Stars 15.6K First Seen Mar 7, 2026 Security Audits Gen Agent Trust Hub ...
1.3K
5890 private-connectivity grafana/skills
Grafana Cloud Private Connectivity Docs : https://grafana.com/docs/grafana-cloud/send-data/ Send metrics, logs, traces, and profiles to Grafana Cloud entirely over your cloud provider's private backbone — no public internet exposure, no egress fees. Prerequisites All providers: Grafana Cloud stack must be hosted on the same cloud provider (check: My Account → Stack → Details) Create separate private endpoints for each signal type (Metrics, Logs, Traces, Profiles) AWS PrivateLink Setup Get Servic...
1.3K
5891 ml-ai grafana/skills
Grafana Cloud AI & ML Docs : https://grafana.com/docs/grafana-cloud/alerting-and-irm/machine-learning/ Grafana Assistant Context-aware LLM sidebar agent (GA). Integrates with your Grafana Cloud stack. Capabilities: Convert natural language to PromQL/LogQL/TraceQL Explain existing queries in plain English Build and edit dashboards from descriptions Investigate incidents (correlate metrics, logs, traces) MCP server integration — connect external tools to Assistant RBAC controls per organization Sl...
1.3K
5892 vitest jezweb/claude-skills
Vitest is a next-generation testing framework powered by Vite. It provides a Jest-compatible API with native ESM, TypeScript, and JSX support out of the box. Vitest shares the same config, transformers, resolvers, and plugins with your Vite app. Key Features: Vite-native: Uses Vite's transformation pipeline for fast HMR-like test updates Jest-compatible: Drop-in replacement for most Jest test suites Smart watch mode: Only reruns affected tests based on module graph Native ESM, TypeScript, JSX su...
1.3K
5893 react-nextjs-development sickn33/antigravity-awesome-skills
React/Next.js Development Workflow Overview Specialized workflow for building React and Next.js 14+ applications with modern patterns including App Router, Server Components, TypeScript, and Tailwind CSS. When to Use This Workflow Use this workflow when: Building new React applications Creating Next.js 14+ projects with App Router Implementing Server Components Setting up TypeScript with React Styling with Tailwind CSS Building full-stack Next.js applications Workflow Phases Phase 1: Project Set...
1.3K
5894 zustand lobehub/lobe-chat
LobeHub Zustand State Management Action Type Hierarchy 1. Public Actions Main interfaces for UI components: Naming: Verb form ( createTopic , sendMessage ) Responsibilities: Parameter validation, flow orchestration 2. Internal Actions ( internal_* ) Core business logic implementation: Naming: internal_ prefix ( internal_createTopic ) Responsibilities: Optimistic updates, service calls, error handling Should not be called directly by UI 3. Dispatch Methods ( internal_dispatch* ) State update hand...
1.3K
5895 core-data dpearson2699/swift-ios-skills
Core Data Build and maintain data persistence using Core Data for apps that have not adopted SwiftData. Covers stack setup, concurrency, batch operations, NSFetchedResultsController, persistent history tracking, staged migration, and testing. Contents Stack Setup Concurrency and Threading NSFetchedResultsController Batch Operations Persistent History Tracking Staged Migration Composite Attributes Testing Common Mistakes Review Checklist References Stack Setup NSPersistentContainer encapsulates t...
1.3K
5896 admin grafana/skills
Grafana Cloud Admin Docs : https://grafana.com/docs/grafana-cloud/account-management/ Organization and Stack Structure Grafana Cloud Account └── Organization (billing unit) ├── Stack 1 (prod) → dedicated Grafana, Prometheus, Loki, Tempo URLs ├── Stack 2 (staging) └── Stack 3 (dev) Organization : top-level account with billing, users, API keys, stacks Stack : dedicated Grafana + LGTM instance with its own URLs and credentials User Roles Show more
1.3K
5897 danawa-price-search nomadamas/k-skill
Danawa Price Search What this skill does 다나와의 로그인 없는 공개 검색/가격비교 표면을 읽기 전용으로 호출해 한국 쇼핑몰 가격을 비교한다. 상품명/검색어로 다나와 상품 후보와 pcode 를 찾는다. 선택한 상품의 쇼핑몰별 오퍼를 조회한다. 상품가만이 아니라 배송비 포함 실구매가, 무료배송 여부, 카드 할인가, 무이자 할부 문구를 함께 정리한다. 구매, 로그인, 장바구니, 찜, 주문 액션은 하지 않는다. When to use "다나와에서 에어팟 최저가 찾아줘" "다나와 가격비교로 쇼핑몰별 가격 비교해줘" "무료배송인지, 카드 할인까지 보면 어디가 제일 싸?" "무이자 할부 붙은 최저가도 같이 봐줘" When not to use Show more
1.3K
5898 okx starchild-ai-agent/official-skills
OKX OnChainOS — Skills Directory What this file is: a directory page that points to OKX's official onchainos-skills repo. It contains no logic of its own — every sub-skill below lives upstream at okx/onchainos-skills and is fetched fresh on install, so you always get the latest version. OKX OnChainOS is a suite of 22 specialized sub-skills covering on-chain trading, market analytics, smart-money signals, DeFi investing & positions, cross-chain bridging, wallet ops, security scanning, payment pro...
1.3K
5899 cuopt-routing-formulation nvidia/skills
Routing Formulation Domain concepts for vehicle routing. No API or interface details here. What is routing TSP : Single vehicle, visit all locations once (e.g. shortest tour). VRP : Multiple vehicles, capacity and/or time limits; assign orders to vehicles and sequence stops. PDP : Pickup and delivery pairs; pickup must be visited before the corresponding delivery. Required questions (problem and data) Ask these if not already clear: Show more Installs 525 Repository nvidia/skills GitHub Stars 1....
1.3K
5900 bazi-mingli wolke/bazi-mingli
八字命理占卜技能 (Bazi Mingli Divination Skill) 八字命理(四柱推命)專業排盤與解命系統。源自中國傳統命理學,以出生年月日時的天干地支組合,推算人生命運與運勢。 使用時機 當用戶請求以下類型的幫助時,應啟用此技能: 排盤相關:請求八字排盤、命盤查詢、生辰八字分析 命理諮詢:詢問五行、十神、大運、流年相關問題 運勢預測:事業財運、感情婚姻、健康運勢 關鍵詞觸發:「八字」「四柱」「命盤」「排盤」「算命」「命理」「五行」「大運」「流年」 核心功能 八字排盤(年柱、月柱、日柱、時柱) 五行分析(金木水火土分布) 十神配置分析 日主強弱判斷 用神喜忌推斷 大運流年預測 婚姻、事業、財運、健康專項分析 技能結構 /bazi-mingli/ ├── SKILL.md ← 本文件(核心指南) ├── ETHICS.md ← 倫理準則 ├── README.md ← 專案說明 ├── references/ │ ├── tiangan-dizhi.md ← 天干地支基礎 │ ...
1.3K