An open API service indexing awesome lists of open source software.

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

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.