note-taker
NewCommunity RegistryGeneralby Ali Karbassi
A background note-taker that captures decisions, action items, blockers, and key findings
Community PluginView Source
Overview
A collection of Claude Code plugins by Ali Karbassi.
Installation
First, add the marketplace:
bash
claude plugin marketplace add karbassi/claude-pluginsThen install plugins with your preferred scope:
bash
claude plugin install github@karbassi-claude-plugins --scope <scope>Installation Scopes
| Scope | Flag | Description |
|---|---|---|
| user | --scope user | Installed globally for your user account. Available in all projects. This is the default if no scope is specified. |
| project | --scope project | Installed for the current project. Configuration stored in project settings and can be shared via version control. |
| local | --scope local | Installed for the current working directory only. Most restrictive scope. |
Examples
bash
# Install globally (available everywhere)
claude plugin install github@karbassi-claude-plugins --scope user
# Install for this project (recommended for team projects)
claude plugin install github@karbassi-claude-plugins --scope project
# Install for this directory only
claude plugin install github@karbassi-claude-plugins --scope localWhich scope should I use?
- •`user` - Personal plugins you want everywhere (default)
- •`project` - Team projects where plugins should be shared via version control
- •`local` - Testing plugins or directory-specific workflows
Available Plugins
| Plugin | Description |
|---|---|
| changelog-manager | Maintain CHANGELOG.md following Keep a Changelog format |
| note-taker | Background note-taker that captures decisions, action items, blockers, and key findings |
| git-agent | Subagent that handles git operations (commit, stage, etc.) |
| docs-update | Subagent that updates project documentation files |
| todo-update | Subagent that keeps TODO.md current with task status |
| browser-research | Subagent for browser automation and web research |
| github | Unified GitHub agent for issues, PRs, and code reviews |
| youtube-transcript | Fetch and present transcripts from YouTube videos |
Structure
code
claude-plugins/
├── .claude-plugin/
│ └── marketplace.json # Plugin registry
├── plugins/
│ ├── changelog-manager/ # Changelog maintenance
│ ├── note-taker/ # Background note-taking
│ ├── git-agent/ # Git operations
│ ├── docs-update/ # Documentation updates
│ ├── todo-update/ # Task tracking
│ ├── browser-research/ # Browser automation
│ ├── github/ # GitHub issues & PR reviews
│ └── youtube-transcript/ # YouTube video transcripts
└── README.mdLicense
MIT
Install & Usage
1
Create the skills directory
mkdir -p .claude/skills2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/note-taker.md https://raw.githubusercontent.com/karbassi/claude-plugins/main/SKILL.md3
Invoke in Claude Code
/note-takerView source on GitHub
Frequently Asked Questions
What is note-taker?
A background note-taker that captures decisions, action items, blockers, and key findings
How to install note-taker?
To install note-taker, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /note-taker.
What is note-taker best for?
note-taker is a community categorized under General. Created by Ali Karbassi.