Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

customizecustomize 搜索

Agent Skill

customize 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

494

周安装

21

GitHub Stars

44

下载量

173
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:customize(customize 搜索)
来源仓库:https://github.com/darraghh1/my-claude-setup
仓库路径:skills/customize
安装命令:
npx skills add https://github.com/darraghh1/my-claude-setup --skill customize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/darraghh1/my-claude-setup --skill customize

简介

customize 收集项目信息填充 CLAUDE.md 与 rules 文件中的 CUSTOMIZE 标记。

  • 适用于个性化 Claude Code 工作环境,匹配项目风格与约束条件。
  • 仅修改标记区域,不触动 hooks 与其他技能,保持系统稳定性。
  • 需用户提供必要信息,避免虚构内容;简洁填写以防 token 浪费。
  • customize 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Customize Setup for Your Project

Customize this Claude Code setup for: $ARGUMENTS

Critical

  • Do NOT modify hooks, agents, or other skills — this skill ONLY fills CUSTOMIZE markers
  • Do NOT invent information — if the user didn't provide something, ask for it
  • Keep it concise — CLAUDE.md is loaded on every prompt. Verbose sections waste tokens.
  • Match the style of existing content in each file when filling markers

What This Skill Does

This setup has <!-- CUSTOMIZE --> markers in CLAUDE.md and .claude/rules/*.md that need project-specific details. This skill collects your project information ONCE, then fills in ALL markers automatically.

See examples.md in this skill directory for a complete example of what good customization looks like (the "Acme HR" reference project).

Task Tracking

Tasks survive context compacts — skipping this check causes lost progress and repeated work.

Before starting work, run TaskList to check if tasks already exist from a previous session or before a compact. If tasks exist:

  1. Read existing tasks with TaskGet for each task ID
  2. Find the first task with status pending or in_progress
  3. Resume from that task — do NOT recreate the task list

If no tasks exist, create them after the first round of user questions:

Example task list:

Task 1: Collect project brief (all rounds)
Task 2: Read all CUSTOMIZE markers
Task 3: Fill CLAUDE.md
Task 4: Fill rule files
Task 5: Clean up markers
Task 6: Validate completeness

Mark each task in_progress when starting and completed when done.

Step 1: Collect Project Brief

Use AskUserQuestion to collect project details. Ask up to 4 questions at a time, then follow up with remaining questions. Do NOT proceed until all critical information is gathered.

Round 1 — Core Identity

Ask these questions using AskUserQuestion:

  1. Project name and description — "What is your project name and a one-line description?"

- Example: "Acme SaaS — workforce management platform"

  1. App structure — "Is this a monorepo or single app?"

- If monorepo: ask for app names, ports, and purposes in follow-up - If single-app: note this and skip monorepo section

  1. Package manager — "Which package manager?"

- Options: npm, pnpm, yarn, bun

  1. Component library — "What UI component library do you use?"

- Options: shadcn/ui, Radix UI, MUI, custom, none - Follow up: "What is the import path?" (e.g., @/components/ui, ~/components)

Round 2 — Architecture

  1. Auth model — "What is your auth/account model?"

- Options: Single-user, Multi-tenant with teams, Multi-tenant with orgs, Other - If multi-tenant: "How are accounts scoped? (account_id FK, org_id, workspace_id)"

  1. Framework wrappers — "Does your framework provide wrappers for Server Actions or auth?"

- Example: "enhanceAction from MakerKit", "withAuth from next-auth" - If no wrapper: we'll use the default Zod + manual auth pattern

  1. Logging — "What logging approach do you use?"

- Options: console (dev only), Pino, Winston, framework logger - Follow up if not console: "What is the import path?" (e.g., @/lib/logger)

  1. Supabase client paths — "Where are your Supabase client factories?"

- Default: @/lib/supabase/server and @/lib/supabase/client - Or framework-provided: @kit/supabase/server-client

Round 3 — Commands & Git

  1. Key commands — "List your main dev commands:"

- dev, build, test, lint, verify/check-all, migration commands, type generation - If unsure, ask to read package.json scripts

  1. Git strategy — "What is your branch strategy?"

- Options: main only, main + development, feature branches to main - Remote names (origin, upstream if forked from a template)

  1. CI/CD — "What CI/CD do you use?"

- Options: GitHub Actions, Vercel, GitLab CI, none yet - Key jobs: typecheck, lint, test, deploy

Round 4 — Optional Features

  1. i18n — "Do you use internationalization?"

- If yes: library (next-intl, react-i18next), translation namespaces

  1. Testing structure — "Where do your tests live?"

- Default: __tests__/{feature}/ - Or: src/__tests__/, app/**/*.test.ts, colocated

  1. Anything else — "Any framework-specific patterns, admin panel requirements, feature flags, or special conventions I should know about?"

Step 2: Read All CUSTOMIZE Markers

Before filling anything in, read every file that has markers to understand context:

CLAUDE.md
.claude/rules/git-workflow.md
.claude/rules/database.md
.claude/rules/patterns.md
.claude/rules/coding-style.md
.claude/rules/security.md
.claude/rules/ui-components.md
.claude/rules/forms.md
.claude/rules/testing.md
.claude/rules/i18n.md
.claude/rules/admin.md
.claude/rules/pages-and-layouts.md
.claude/rules/route-handlers.md

Read each file completely before editing.

Step 3: Fill CLAUDE.md

This is the most important file — Claude reads it on every conversation.

Marker: Project description (top of file)

Replace the <!-- CUSTOMIZE: Replace with a brief description --> comment with a one-line description. Example: Acme SaaS — Next.js App Router, Supabase, TypeScript.

Remove the entire HTML comment block (the template instructions at the top of the file).

Marker: Critical Rules

Add any framework-specific critical rules from the intake. Examples:

  • If using a Server Action wrapper: "Skipping {wrapper} means unauthenticated data can reach the database."
  • If using a specific logger: "Use getLogger() from {path} instead of console.log."
  • If monorepo with upstream: "When merging upstream, propagate infrastructure changes to all product apps."

Marker: Monorepo

  • If monorepo: Add a table with app names, ports, and purposes
  • If single-app: Remove the ## Monorepo section entirely

Marker: Commands

Add all commands from the intake in a code block. Group by category (dev, test, build, deploy).

Marker: Architecture

Describe: multi-tenant model, data fetching patterns, auth, RLS approach, any special systems.

Marker: Verification

Add the project's verify/check commands (typecheck, lint, test).

Step 4: Fill Rule Files

For each rule file, replace <!-- CUSTOMIZE --> markers with project-specific content.

git-workflow.md

  • Remotes table (origin URL, upstream if applicable)
  • Branch strategy (adjust the table)
  • Verify command
  • CI pipeline table
  • Upstream merge process (if forked from template, otherwise remove section)

database.md

  • Migration/typegen command paths
  • RLS helper functions (list any existing helpers, or keep the example)
  • OTP components (if framework provides them, otherwise remove marker)

patterns.md

  • Server Action wrapper (replace manual pattern with framework wrapper if applicable)
  • Supabase client import paths (update the table)
  • Auth/account model (adjust or remove multi-tenant section)

coding-style.md

  • Server Action wrapper reference (match patterns.md)

security.md

  • Auth wrapper documentation

ui-components.md

  • Component library name and import path

forms.md

  • Server Action wrapper
  • Form component library imports

testing.md

  • Test directory structure
  • Test commands

i18n.md

  • i18n setup (library, config)
  • Translation namespaces
  • If no i18n: Delete the entire file (or leave as-is for future use)

admin.md

  • Admin verification pattern

pages-and-layouts.md

  • Loading component
  • Workspace providers
  • Feature flags (if applicable)

route-handlers.md

  • Route handler wrapper (if framework provides one)

Step 5: Clean Up Markers

After filling all markers:

  1. Remove all <!-- CUSTOMIZE --> comments — they served as prompts and should be deleted after customization. The content they prompted for is now filled in.
  2. Remove the template instruction block at the top of CLAUDE.md (the HTML comment with "SETUP INSTRUCTIONS").
  3. Update file headers — Change generic titles to project-specific ones:

- # Patterns — Next.js Supabase TypeScript could become # Patterns — Acme Next.js Supabase

Step 6: Validate

Run these checks to confirm completeness:

Check 1: No remaining CUSTOMIZE markers

grep -rn "CUSTOMIZE" CLAUDE.md .claude/rules/ 2>/dev/null | grep -v "node_modules" || echo "All markers filled!"

If any remain, go back and fill them. If a marker cannot be filled due to missing information, ask the user.

Check 2: CLAUDE.md has content in all sections

Read back CLAUDE.md and verify:

  • Project description is present (not a placeholder)
  • Critical Rules section has content
  • Monorepo section has content OR was removed for single-app
  • Commands section has a code block with real commands
  • Architecture section describes the actual architecture
  • Verification section has real commands

Check 3: No template instruction block remains

grep -c "SETUP INSTRUCTIONS" CLAUDE.md || echo "Template header removed!"

Report

Print a summary:

Customization complete for {project-name}!

Files modified:
  - CLAUDE.md
  - .claude/rules/git-workflow.md
  - .claude/rules/database.md
  - ... (list all modified files)

Remaining markers: {count} (0 = fully customized)

Next steps:
  1. Review the changes: git diff
  2. Test the setup: start a new Claude Code session and verify context
  3. Optional: Add project-specific validators to post_tool_use.py

Resuming After Context Compact

If you notice context was compacted or you're unsure of current progress:

  1. Run TaskList to see all tasks and their status
  2. Find the in_progress task — that's where you were
  3. Run TaskGet {id} on that task to read full details
  4. Continue from that task — don't restart from the beginning

Tasks persist across compacts. The task list is your source of truth for progress, not your memory.

Pattern for every work session:

TaskList → find in_progress or first pending → TaskGet → continue work → TaskUpdate (completed) → next task

Troubleshooting

Markers remain after Step 6 validation

The most common cause is a marker inside an HTML comment that looks like content. Read the file, find the <!-- CUSTOMIZE comment, and either fill it or delete it. If the marker needs information you don't have, use AskUserQuestion to ask.

User unsure about commands or paths

Offer to read their package.json for commands: Read package.json and extract scripts. For monorepo structures, Glob "apps/*/package.json" reveals app layout.

i18n section not applicable

If the project doesn't use i18n, you can either delete .claude/rules/i18n.md entirely or leave it with a note at the top: "i18n is not currently used in this project."

User provides minimal answers

Ask follow-up questions. A one-word answer like "pnpm" is fine for package manager, but "yes" for monorepo needs follow-up: "What are your app names, ports, and purposes?"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.56%
按下载量换算60

Claude

31.59%
按下载量换算55

Cursor

20.85%
按下载量换算36

Gemini CLI

8.63%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills