Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

dotfiles-optimizer点文件优化器

Agent Skill

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

总安装

447

周安装

19

GitHub Stars

9

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kriscard/kriscard-claude-plugins --skill dotfiles-optimizer

简介

dotfiles-optimizer 协调点文件的全面分析和智能优化,提供上下文感知的建议。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要对 zsh、tmux、nvim 等组件进行优化时使用。
  • 通过 GitHub 安装,支持按组件 scope(zsh/tmux/nvim/git)或全部结构进行分析。
  • 使用前需设置 .claude/dotfiles-optimizer.local.md 指定 dotfiles 路径,支持多种分析标志。
  • 适用于希望系统化改进点文件配置的复杂项目,提供结构化和可验证的优化方案。

SKILL.md

Dotfiles Optimizer - Main Orchestrator

Coordinate comprehensive analysis and optimization of dotfiles with intelligent, context-aware recommendations. Reads the dotfiles path from .claude/dotfiles-optimizer.local.md (defaults to ~/.dotfiles).

Arguments

When invoked via /optimize, the following arguments are supported:

Component Scope (optional, positional):

  • zsh - Shell configuration only
  • tmux - Tmux configuration only
  • nvim - Neovim configuration only
  • git - Git configuration only
  • terminal - Terminal configs (Kitty/Ghostty) only
  • all or omitted - Entire dotfiles structure

Flags (optional):

  • --apply - Automatically apply critical and recommended fixes without confirmation
  • --security - Focus analysis on security issues only
  • --performance - Focus analysis on performance optimization only
  • --modern-tools - Focus on modern tool recommendations only

Examples: /optimize, /optimize zsh, /optimize --security, /optimize zsh --apply, /optimize --performance

When to Use

Activate this skill when users request:

  • General optimization ("optimize my dotfiles", "improve my shell")
  • Security audits ("check for exposed credentials", "audit my configs")
  • Performance improvements ("make my shell faster", "speed up zsh startup")
  • Modern tool recommendations ("what CLI tools should I use")
  • Configuration analysis ("analyze my setup", "check my tmux config")

Workflow

1. Determine Scope

Infer scope from context: if user is editing a specific config file, focus there. If they request a specific component, scope to it. Otherwise analyze everything. Load dotfiles path from .claude/dotfiles-optimizer.local.md (default: /Users/kriscard/.dotfiles). Check for dotfiles_path override and enable_proactive_warnings setting.

2. Invoke Analysis Agent

Call dotfiles-analyzer agent with the determined scope for deep analysis (2-3 min). The agent parses configs, checks security issues, identifies performance bottlenecks, suggests modern CLI alternatives, and validates patterns against best practices.

3. Reference Best Practices

Consult dotfiles-best-practices skill for modern CLI tools, shell performance techniques, security patterns, config organization strategies, and git workflow improvements. Use this to enhance the analyzer's findings with context and rationale.

4. Generate Prioritized Recommendations

Organize findings into three tiers:

  • Critical: Security vulnerabilities, insecure permissions, breaking errors, data loss risks
  • Recommended: Performance optimizations, modern tool suggestions, better patterns, missing best practices
  • Optional: Aesthetic improvements, nice-to-have features, alternative approaches

Format output as: ## Analysis Results for [Scope] with each tier listing count and items with location/remediation/rationale.

5. Offer to Apply Fixes

Present options: all critical (recommended), all improvements, specific items, or none. For --apply flag: auto-apply critical + recommended, skip optional. When applying: use Read/Edit tools, explain each change, validate syntax. Always create timestamped backups before modifying files.

6. Integration with Existing Tools

The user's dotfiles CLI (/Users/kriscard/.dotfiles/dotfiles) handles init, sync, backup, and doctor. This plugin provides analysis, security scanning, best practice validation, and modern tool suggestions. Defer to their script for mechanical operations.

Gotchas

  • Always create timestamped backups before modifying any file -- changes to shell config can break the terminal
  • The user has an existing dotfiles CLI script -- complement it, don't duplicate its functionality (init, sync, backup)
  • Default dotfiles path is /Users/kriscard/.dotfiles -- check .claude/dotfiles-optimizer.local.md for overrides
  • Security issues (exposed credentials) are ALWAYS critical priority -- never downgrade them
  • Don't suggest replacing tools the user already has configured -- check existing aliases first

Output Best Practices

  • Include file paths and line numbers; show before/after examples
  • Provide exact commands or edits; link to docs when relevant
  • Explain rationale -- help user learn, not just fix

Reference Files

FileContents
references/component-analysis.mdPer-component analysis details, modern tool table, security and performance checklists
references/analysis-patterns.mdCredential detection regex, lazy loading templates, tool configs, common issue fixes

Related

  • Skill: dotfiles-best-practices -- knowledge base for patterns and modern tools
  • Agent: dotfiles-analyzer -- deep file-by-file analysis, activated by this orchestrator
  • Commands: /optimize (full workflow), /audit (read-only analysis)

Example Session

User: "Optimize my dotfiles"

1. Scope: Entire dotfiles (no specific context)
2. Invoke dotfiles-analyzer for comprehensive analysis
3. Reference dotfiles-best-practices for context
4. Findings:
   Critical (2): API key in zsh.d/00-env.zsh:45, .gitconfig-work perms 644->600
   Recommended (5): Lazy load nvm (-300ms), eza alias, modularize .zshrc,
     .env.example template, git commit signing
   Optional (3): starship prompt, bat Catppuccin theme, tpm for tmux
5. User: "All critical and recommended"
6. Apply each fix with backup, explanation, and syntax validation
7. Verify changes and confirm completion

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

34.21%
按下载量换算54

Codex

32.87%
按下载量换算52

Cursor

18.2%
按下载量换算29

Gemini CLI

10.59%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills