https://github.com/himkt/.claude
🔯 My claude code bastion
https://github.com/himkt/.claude
Last synced: 2 months ago
JSON representation
🔯 My claude code bastion
- Host: GitHub
- URL: https://github.com/himkt/.claude
- Owner: himkt
- Created: 2026-03-19T12:28:20.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-04T04:45:25.000Z (2 months ago)
- Last Synced: 2026-04-04T04:48:25.080Z (2 months ago)
- Language: Vue
- Homepage:
- Size: 210 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ~/.claude
Personal configuration repository for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
This repository tracks reusable customizations — skills, agents, scripts, and settings — while keeping ephemeral data (history, caches, session state) gitignored.
## Structure
```
~/.claude/
├── CLAUDE.md # Global instructions applied to all projects
├── .claude/CLAUDE.md # Instructions specific to this repository
├── settings.json # Claude Code settings (model, permissions, etc.)
├── agents/ # Custom agent definitions
├── skills/ # Skills (slash commands invoked via the Skill tool)
├── bin/ # Utility scripts (e.g., status line)
└── vendor/ # Third-party dependencies (git submodules)
```
### Skills
Skills are reusable prompt templates that Claude Code can invoke as slash commands. Each skill lives in its own directory under `skills/` and is registered in `CLAUDE.md` via the `/sync-skills` skill.
### Agents
Agents are specialized subagent definitions written in Markdown with YAML frontmatter. They extend Claude Code with domain-specific capabilities such as document creation, test generation, and web research.
### Bin
Executable scripts used by Claude Code features. For example, the status line script provides contextual information in the terminal.