Skip to main content
在 Manus 中运行任何 Skill
一键导入
recca0120
GitHub 创作者资料

recca0120

按仓库查看 5 个 GitHub 仓库中的 69 个已收集 skills。

已收集 skills
69
仓库
5
更新
2026-05-16
仓库浏览

仓库与代表性 skills

project-overview
项目管理专家

cc-office project overview — current phase (Claude Code web client with protocol alignment to the VS Code extension) plus the long-term RPG roadmap (Code Quest). Use when asking what this project does, planning architecture, understanding which features are built vs planned, or framing new features.

2026-05-16
code-quest-review
软件质量保证分析师与测试员

Code Quest project-specific code review checks covering import order, zod schema placement, cross-package event-name alignment, server handler middleware, channel / emitter semantics, client handler organization, React Compiler compatibility, icon facade convention, and FakeSummoner test patterns. Pairs with generic `code-review` skill. Use when reviewing Code Quest code, discussing refactor, checking a PR for protocol/handler/zod alignment, or verifying that recent changes match project conventions.

2026-05-14
vitest-testing
软件质量保证分析师与测试员

Project-specific Vitest testing reference for the **server** package (apps/server). Use when writing or modifying server-side vitest tests, fixing failing tests, testing DB / socket.io server-side, choosing mocking strategies, or working with async patterns and fake timers. For frontend tests (apps/web) see `frontend-testing`.

2026-05-14
inversify-di
软件开发工程师

Inversify dependency injection patterns for the server. Use when creating or modifying DI container bindings, adding injectable services, writing tests with dependency overrides, or managing TYPES symbols.

2026-05-13
tailwind-v4
网页开发工程师

Tailwind CSS v4 styling with @theme, @utility, and @custom-variant directives. Use when styling components, configuring design tokens, adding custom utilities, migrating from v3, or converting hardcoded colors to theme tokens. Enforces token-first design flow: look up existing @theme tokens before reaching for arbitrary values, and extend @theme when a design exceeds the token range rather than sprinkling ad-hoc `[Npx]` / `[#hex]` values.

2026-05-13
claude-code-helper
网络与计算机系统管理员

Explains Claude Code features, skills, subagents, hooks, MCP, and CLI usage. Use when the user asks questions like "How do I...", "Can Claude...", "What is...". Provides detailed guidance on Claude Code CLI functionality.

2026-05-07
collect-cli-fixtures
网络与计算机系统管理员

Collects real CLI (Claude, Gemini) stream-json output as .jsonl fixture files. Use when adding new fixture scenarios, updating after CLI version changes, or covering new protocol event types.

2026-05-07
drizzle-orm
数据库架构师

Drizzle ORM and drizzle-kit patterns for multi-dialect setup (SQLite + MySQL). Use when creating or modifying DB schemas, writing migrations, implementing repositories, adding tables or relations, or writing database tests.

2026-05-07
当前展示该仓库 Top 8 / 33 个已收集 skills。
zod
软件开发工程师

Zod v4 schema validation 最佳實踐指南。當需要定義 schema、驗證/解析 JSON 資料、type inference、或處理 unknown data 時使用。

2026-03-28
svelte
软件开发工程师

Svelte 5 + Astro 整合最佳實踐指南。當需要建立 Svelte 元件、使用 runes API、整合 Astro islands、或用 Testing Library 測試 Svelte 元件時使用。

2026-03-28
github-graphql
软件开发工程师

GitHub GraphQL API 最佳實踐指南。當需要使用 GraphQL 查詢使用者資料、處理 cursor pagination、計算 rate limit、或除錯 GraphQL errors 時使用。

2026-03-28
top-github-users-ref
软件开发工程师

gayanvoice/top-github-users 架構參考指南。當需要了解 GitHub 使用者排行榜的資料抓取管線、國家設定、排行計算邏輯、已知問題、或社群需求時使用。

2026-03-28
commander
软件开发工程师

Commander.js v14 CLI 框架最佳實踐。當需要建立 CLI 工具、解析命令列參數、設計 subcommands 時使用。

2026-03-27
github-actions
软件开发工程师

GitHub Actions CI/CD 最佳實踐指南。當需要設定 workflow、cron 排程、GitHub Pages 部署、使用 Octokit API、或處理 rate limiting 時使用。

2026-03-27
globe-gl
网页开发工程师

Globe.GL 3D 地球視覺化指南。當需要建立互動式 3D 地球、國家熱力圖、點擊導航、或整合 Astro 時使用。

2026-03-27
msw
软件质量保证分析师与测试员

MSW (Mock Service Worker) 2.x 最佳實踐指南。當需要在 Vitest 中攔截 HTTP 請求、測試 API 整合(含 Octokit)、模擬錯誤/rate limiting、或組織 mock handlers 時使用。

2026-03-27
当前展示该仓库 Top 8 / 15 个已收集 skills。
cubejs
软件开发工程师

cubejs (Rubik's Cube solver, Kociemba two-phase) 使用指南。當需要實作魔術方塊自動解法、狀態字串序列化、或 scramble 產生時使用。

2026-04-14
msw-fetch-mock
软件质量保证分析师与测试员

msw-fetch-mock 套件使用指南(搭配 MSW v2 + Vitest)。當需要 mock HTTP 請求、測試 fetch 呼叫、驗證 API 互動時使用。

2026-04-14
react
软件开发工程师

React 19 最佳實踐指南。當需要撰寫 React 元件、使用 Hooks、處理狀態管理、或搭配 TypeScript/Vite 開發時使用。

2026-04-14
react-three-fiber
软件开发工程师

React Three Fiber (R3F) + Three.js + drei 最佳實踐。當需要建立 3D 場景、處理相機/光照、互動事件、動畫、效能優化時使用。

2026-04-14
tdd
软件质量保证分析师与测试员

TDD (Test-Driven Development) 最佳實踐指南,搭配 Vitest + React Testing Library。當需要撰寫測試、實踐 Red-Green-Refactor、設計測試結構時使用。應在開發新功能時主動套用。

2026-04-14
test-doubles
软件质量保证分析师与测试员

Test Doubles 最佳實踐指南(Vitest + TypeScript)。當需要選擇 Mock/Stub/Fake/Spy/Dummy、或討論測試隔離策略時使用。

2026-04-14
vite
软件开发工程师

Vite 6/7 最佳實踐指南。當需要初始化 Vite 專案、設定 plugin、配置 build、除錯 HMR、path alias 或整合 React/TS/Vitest 時使用。

2026-04-14
zustand
软件开发工程师

Zustand 5 最佳實踐指南。當需要建立 store、設計 selector、使用 middleware (persist/immer/devtools)、或處理 React 狀態管理時使用。

2026-04-14
hugo-theme-stack
网页开发工程师

Provides Hugo Stack theme configuration reference including sidebar, widgets, comments (Giscus), color scheme, article options, custom CSS, and Stack-specific shortcodes. Use when configuring or troubleshooting Stack theme settings.

2026-04-21
tech-blog-writing
技术写作员

Guides writing and editing technical blog posts for recca0120.github.io (Hugo + Stack theme, bilingual zh-hant-tw + en). Covers article structure, SEO, frontmatter conventions, cover image generation, internal links via Hugo ref shortcode, plain blockquote callouts (for cross-post compatibility), and humanized zh-hant writing style. Use this skill whenever the user writes, drafts, edits, translates, or restructures any article on this blog — even if they don't explicitly say "blog post" (e.g. "幫我整理成一篇", "改寫這段", "翻成英文版").

2026-04-21
humanizer-zh
作家与作者

Detects and removes AI-generated writing patterns from Chinese text (both 繁體 and 简体), making it sound natural and human-written. Use this skill whenever editing, reviewing, translating, or drafting any Chinese prose longer than a short sentence — including blog posts, article sections pasted by the user, AI-drafted translations, or any text that smells "AI-ish" (exaggerated symbolism, promotional tone, formulaic三段式 structure, filler phrases like "此外/然而/總而言之"). Preserve the original script variant (繁體 → 繁體, 简体 → 简体) — never silently convert between them.

2026-04-20
url-to-blog
作家与作者

當使用者單純貼一個 URL 時,自動詳讀該網址的內容,整理成技術部落格文章。 觸發條件:訊息只有一個或多個 URL,沒有其他指示。 流程:讀內容 → 搜尋相關舊文章 → 問使用者確認方向 → 寫文章。

2026-04-20
hugo
网页开发工程师

Provides Hugo static site generator reference for configuration, templates, content management, and multilingual setup. Use when modifying Hugo site config, creating templates or shortcodes, managing content structure, or debugging Hugo build issues.

2026-03-03
已展示 5 / 5 个仓库
已展示全部仓库