install
source · Clone the upstream repo
git clone https://github.com/dontoisme/awesome-powered-by-claude-code
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/dontoisme/awesome-powered-by-claude-code "$T" && mkdir -p ~/.claude/skills && cp -r "$T/examples/minimal-skill" ~/.claude/skills/dontoisme-awesome-powered-by-claude-code-minimal-skill && rm -rf "$T"
manifest:
examples/minimal-skill/SKILL.mdsource content
Example: Minimal Skill Template
This is a minimal example showing the structure of a "Powered by Claude Code" app.
What This Skill Does
[Describe what problem this solves in 1-2 sentences]
Commands
Start a Session
./app start --name "session name"
Check Status
./app status
View History
./app history --period week
Data Location
All data is stored in
~/.app-name/data.db (SQLite).
Typical Workflows
Daily Use
- User asks Claude to start a session
- Claude runs
./app start - Data is logged to SQLite
- User can query patterns later
Weekly Review
- User asks "How did I do this week?"
- Claude runs
./app history --period week - Claude analyzes patterns and provides insights
Notes
- All data stays local
- No network requests required
- Database accumulates context over time