Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Expert plugin for Logseq's database-based architecture with full CRUD capabilities. Provides Datascript schema knowledge, Datalog query building, HTTP API integration, MCP server, and comprehensive read/write operations for Logseq graphs.
npx claudepluginhub c0ntr0lledcha0s/claude-code-plugin-automations --plugin logseq-expertAdd a new block to a Logseq page
Analyze a Logseq MD graph for DB migration compatibility and potential issues
Create a new page in Logseq with optional properties and content
Define a new class (tag) for Logseq DB graphs with inherited properties
Define a new typed property for Logseq DB graphs with proper schema configuration
Expert guidance for building Logseq plugins compatible with the new DB architecture. Auto-invokes when users want to create Logseq plugins, work with the Logseq Plugin API, extend Logseq functionality, or need help with plugin development for DB-based graphs. Covers plugin structure, API usage, and DB-specific considerations.
Manages connections to Logseq graphs via HTTP API, CLI, or MCP Server. Auto-invokes when users mention connecting to Logseq, API tokens, graph paths, connection issues, or backend configuration. Handles backend detection, environment setup, and connectivity troubleshooting.
Expert guidance for migrating Logseq graphs from Markdown (MD) format to the new Database (DB) format. Auto-invokes when users ask about MD to DB migration, converting graphs, import options, data transformation, or compatibility between Logseq versions. Covers migration strategies, common issues, and best practices.
Expert in building Datalog queries for Logseq DB graphs. Auto-invokes when users need help writing Logseq queries, understanding Datalog syntax, optimizing query performance, or working with the Datascript query engine. Covers advanced query patterns, pull syntax, aggregations, and DB-specific query techniques.
Expert in reading data from Logseq DB graphs via HTTP API or CLI. Auto-invokes when users want to fetch pages, blocks, or properties from Logseq, execute Datalog queries against their graph, search content, or retrieve backlinks and relationships. Provides the logseq-client library for operations.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code skill pack for Notion (30 skills)
AI-powered knowledge base management - Capture conversation learnings, maintain topic-specific KB files, Obsidian-compatible knowledge graph, structured dynamic context loading, and institutional knowledge in CLAUDE.md
Flexible knowledge base scaffolding: personal KB, project docs, team collaboration with configurable entities, microdatabases, and VitePress portal
Create and edit Obsidian vault files including Markdown, Bases, and Canvas. Use when working with .md, .base, or .canvas files in an Obsidian vault.
A self-developing knowledge management system for Claude Code. Bridges AI memory to an Obsidian vault with feature-organized spine notes, auto-capture skills, and color-coded graph visualization.
Automatic Claude Code -> Obsidian second brain: zero-config session capture, hybrid search, autonomous recall, daily/lessons/preferences.
Streamlined GitHub workflow automation with 9 core commands and 9 auto-invoking skills. Covers project boards, labels, milestones, commits, issues, pull requests, branching strategies, and worktrees. Features automatic issue tracking, commit integration, branching flow automation (gitflow, GitHub Flow, trunk-based), and session environment setup.
Self-improvement system for Claude with critic agent, quality analysis skills, automated conversation analysis, and feedback loops. Features automatic pattern tracking, learning reinforcement, and trend detection. Enables continuous improvement through honest self-assessment and iterative refinement.
Expert plugin for quality code reviews focused on testing. Provides specialized expertise for Jest, Playwright, and general test quality analysis with automated review and improvement suggestions.
Comprehensive plugin for building Claude Code components: agents, skills, commands, hooks, MCP servers, and complete plugins. Features specialized builders for creating, updating, auditing, and maintaining components with validation scripts, templates, and best practices guidance following Anthropic's plugin-dev patterns.
Comprehensive documentation management plugin for analyzing, generating, updating, and enforcing documentation standards in codebases
A collection of plugins and meta-agents for Claude Code, Anthropic's official CLI for Claude. These plugins extend Claude's capabilities with specialized agents, skills, commands, and hooks.
CI/CD Pipeline: Automated validation, changelog management, and semantic versioning. See CI/CD Guide โ
Now available on Claude Marketplace! Install with one command or browse plugins directly from Claude Code.
Claude Code is an interactive CLI tool that helps with software engineering tasks. It supports:
A meta-agent for building other Claude agents!
The Agent Builder plugin provides comprehensive tools for creating Claude Code extensions. It includes expert agents, auto-invoked skills, validation scripts, and templates for all component types.
Features:
Quick Start:
# Create a new agent
/claude-component-builder:agents:new code-reviewer
# Create a new skill
/claude-component-builder:skills:new analyzing-data
# Create a new command
/claude-component-builder:commands:new run-tests
# Create a new hook
/claude-component-builder:hooks:new validate-writes
# Create a complete plugin
/claude-component-builder:plugins:new my-tools
Claude critiquing Claude - A feedback loop for continuous improvement!
The Self-Improvement plugin enables Claude to critique its own work, identify quality issues, and create feedback loops for continuous learning. It includes a self-critic agent and skills for quality analysis, improvement suggestions, and feedback loops.
Features:
Quick Start:
# Comprehensive review of recent work
/review-my-work
# Quick quality assessment
/quality-check
Use Cases:
Install directly from the Claude Code marketplace:
# Add the marketplace to your Claude Code settings
claude marketplace add https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations
# Install specific plugins
claude plugin install claude-component-builder
claude plugin install self-improvement
Or add to your .claude/settings.json:
{
"marketplaces": [
"https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations"
],
"plugins": [
"claude-component-builder",
"self-improvement"
]
}
Install plugins to your user-level Claude directory:
# Clone the repository
git clone https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations.git
cd claude-code-plugin-automations
# Link plugins to Claude user directory
mkdir -p ~/.claude/plugins
ln -s $(pwd)/claude-component-builder ~/.claude/plugins/claude-component-builder
ln -s $(pwd)/self-improvement-plugin ~/.claude/plugins/self-improvement
Install plugins at the project level:
# Navigate to your project
cd /path/to/your/project
# Clone the plugins
git clone https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations.git
# Link components to project .claude directory
mkdir -p .claude/{agents,skills,commands}