Personal Claude Code marketplace — skills, commands, and plugins.
.claude-plugin/
└── marketplace.json # Marketplace registry
plugins/
├── lsn-tools/ # Daily workflow plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── commands/
│ │ ├── daily.md # Generate daily note
│ │ ├── weekly.md # Generate weekly note
│ │ ├── research.md # Deep research on a topic
│ │ ├── review.md # Review knowledge base
│ │ └── codedoc.md # Generate code documentation
│ └── skills/
│ └── obsidian/ # Obsidian vault operations
│ └── SKILL.md
└── aws-switch/ # AWS profile switcher
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── aws-switch.md
└── scripts/
└── aws-switch.sh
Register as a local marketplace in Claude Code:
# Add to ~/.claude/plugins/local/.claude-plugin/marketplace.json
# Or symlink the whole repo:
ln -sf ~/workspace/claude-code-skills ~/.claude/plugins/marketplaces/lsn-skillscd ~/workspace/claude-code-skills
# Push changes (remember to switch gh account)
gh auth switch --user Marveliu
git add -A && git commit -m "update skills" && git push
gh auth switch --user liushangnan