kadoppe's Claude Code plugin marketplace
npx claudepluginhub kadoppe/cc-marketplaceA plugin to automatically log Claude Code work sessions to Obsidian Daily Notes
kadoppe's Claude Code Plugin Marketplace
This repository is a marketplace that provides custom plugins for Claude Code.
A plugin that automatically logs Claude Code work sessions to Obsidian Daily Notes. When a session ends, it uses a Stop hook to automatically append the work summary to the Daily Note in your Obsidian vault.
Run the following command in Claude Code to add this marketplace:
/plugin marketplace add /Users/kadoppe/Sources/github.com/kadoppe/cc-marketplace
Or, if cloned from GitHub:
/plugin marketplace add ./cc-marketplace
/plugin install obsidian-logger@cc-marketplace
/plugin list
plugins/ directory:mkdir -p plugins/my-new-plugin/.claude-plugin
cd plugins/my-new-plugin
Create .claude-plugin/plugin.json to define the plugin manifest
Add necessary components (commands, agents, skills, scripts, etc.) to the plugin root
Add plugin information to .claude-plugin/marketplace.json
When you update a plugin:
Uninstall the plugin:
/plugin uninstall plugin-name@cc-marketplace
Reinstall:
/plugin install plugin-name@cc-marketplace
cc-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Marketplace metadata
├── README.md # This file
├── .gitignore # Git exclusion settings
└── plugins/
└── obsidian-logger/ # Plugin
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── hooks/
│ └── hooks.json # Hook configuration
├── scripts/ # Scripts
│ └── append-to-daily-note.py # Main processing
├── config.example.json # Sample configuration file
└── README.md # Plugin documentation
MIT
kadoppe