Token导航 LogoToken导航TokenDH.com
开发规范敏感数据github未标认证来源可访问许可证需确认审计通过

dotfiles-best-practices点文件最佳实践

Agent Skill

dotfiles-best-practices 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

9

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

dotfiles-best-practices 提供现代点文件配置的组织结构和工具链知识库。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要参考模块化 shell 结构、主题配置和加载顺序时使用。
  • 通过 GitHub 安装,基于 Catppuccin Macchiato 主题和数值前缀加载机制组织配置文件。
  • 使用前应确认项目是否已存在 dotfiles 仓库,并了解 GNU Stow 的符号链接管理方式。
  • 适用于希望建立标准化、可维护的点文件系统的开发者,提升配置管理效率。

SKILL.md

Dotfiles Best Practices

Reference knowledge for modern dotfiles configuration, organization, and tooling. Serves as the knowledge base for the dotfiles-optimizer orchestrator.

User-Specific Decisions

Theme: Catppuccin Macchiato across all tools (set via $THEME_FLAVOUR=macchiato)

Shell structure: Modular zsh.d/ with numeric prefix load ordering:

zsh/zsh.d/
├── 00-env.zsh           # Environment variables, PATH
├── 10-options.zsh       # Shell options (setopt)
├── 20-completions.zsh   # Completion system
├── 30-plugins.zsh       # Plugin loading
├── 40-lazy.zsh          # Lazy loading functions
├── 50-keybindings.zsh   # Key bindings
├── 60-aliases.zsh       # Command aliases
├── 70-functions.zsh     # Custom functions
├── 80-integrations.zsh  # External tool integrations
└── 99-local.zsh         # Local overrides (NOT committed)

Main.zshrc sources all modules:

export ZSH="$HOME/.dotfiles/zsh"

for config_file in "$ZSH/zsh.d"/*.zsh(N); do
  source "$config_file"
done

Reference Files

FileContents
modern-cli-tools.mdeza, bat, fd, rg, zoxide, starship, delta, lazygit
shell-performance.mdStartup optimization, lazy loading pattern, profiling
security-patterns.mdCredentials, file permissions, history security,.gitignore
git-config.mdMulti-identity includeIf, aliases
terminal-config.mdKitty, Ghostty, tmux, neovim, Catppuccin theming

Gotchas

  • Claude tends to suggest Powerlevel10k over Starship -- this setup uses Starship for cross-shell compat and speed
  • NVM lazy loading is critical -- eagerly sourcing nvm.sh adds 200-400ms to startup
  • Never alias over system commands unconditionally -- check tool exists first with command -v
  • The 99-local.zsh pattern means local overrides are NOT committed -- don't suggest editing them as shared config
  • File permissions on .env and git config files must be 600, not 644

Quick Reference

Performance: Shell startup <500ms, lazy load version managers, cache completions

Security: Never commit secrets, use.env +.env.example pattern, sensitive files chmod 600

Organization: Modular numeric-prefix structure, separate concerns, local overrides in 99-local.zsh

Modern Tools: eza (ls), bat (cat), fd (find), rg (grep), z (cd) -- check existence before aliasing

Git: Multi-config with includeIf, separate personal/work identities, commit signing recommended

Themes: Consistent Catppuccin Macchiato across all tools, single $THEME_FLAVOUR variable

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.08%
按下载量换算46

Claude

27.22%
按下载量换算34

Cursor

17.97%
按下载量换算22

Gemini CLI

8.58%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills