BeClaude

note-taker

New
Community 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-plugins

Then install plugins with your preferred scope:

bash
claude plugin install github@karbassi-claude-plugins --scope <scope>

Installation Scopes

ScopeFlagDescription
user--scope userInstalled globally for your user account. Available in all projects. This is the default if no scope is specified.
project--scope projectInstalled for the current project. Configuration stored in project settings and can be shared via version control.
local--scope localInstalled 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 local

Which 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

PluginDescription
changelog-managerMaintain CHANGELOG.md following Keep a Changelog format
note-takerBackground note-taker that captures decisions, action items, blockers, and key findings
git-agentSubagent that handles git operations (commit, stage, etc.)
docs-updateSubagent that updates project documentation files
todo-updateSubagent that keeps TODO.md current with task status
browser-researchSubagent for browser automation and web research
githubUnified GitHub agent for issues, PRs, and code reviews
youtube-transcriptFetch 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.md

License

MIT

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/note-taker.md https://raw.githubusercontent.com/karbassi/claude-plugins/main/SKILL.md
3
Invoke in Claude Code
/note-taker
View 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.