Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By nathanvale
Agent-native knowledge system. Research topics and capture findings as structured markdown documents with YAML frontmatter
npx claudepluginhub nathanvale/side-quest-marketplace --plugin cortex-engineeringCapture existing conversation research as a Cortex document
Brainstorm an idea, building on existing Cortex knowledge
Creates, audits, or improves Claude Code skills and commands. Use when scaffolding a new skill, reviewing an existing skill against best practices, or adding components like references, workflows, or templates.
Fix incorrect SKILL.md files when a skill has wrong instructions or outdated API references
Research a topic and save findings as a Cortex document
Adversarial research -- biased teams argue opposite sides, a judge delivers the verdict. Use for comparing technologies, evaluating trade-offs, or resolving debates with structured evidence from Reddit, X, and the web. Do not use for single-source research or quick questions -- use /cortex-engineering:research instead.
Brainstorm ideas building on existing Cortex knowledge. Use when the user wants to brainstorm, explore ideas, or think through an approach.
Design system foundations for visual artifacts -- 8px grid spacing, typography scales, color contrast, border weights, vertical rhythm, and colorblind-safe palettes. Use when creating or styling any visual artifact -- diagrams, charts, presentations, documents, or exports. Provides concrete token values that snap to an 8px baseline grid.
Knows the frontmatter contract for all Cortex knowledge systems. Routes to the correct base fields + system-specific extras when writing docs. Other skills delegate to this skill for doc creation.
Expert knowledge for creating print-ready Mermaid diagrams -- syntax, styling, theming, and print optimization. Use when generating or reviewing any Mermaid diagram.
Requires secrets
Needs API keys or credentials to function
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.
Editorial "OSS Maintainer" bundle for Claude Code from Antigravity Awesome Skills.
PROJECT.md-first autonomous development with hybrid auto-fix documentation. 8-agent pipeline, auto-orchestration, docs auto-update on commit (true vibe coding). Knowledge base system with 90% faster repeat research. Strict mode enforces SDLC best practices automatically. Works for ANY Python/JavaScript/TypeScript/Go project.
Automates pubm setup for new open source projects — configures registries, CI, and changesets with a single skill invocation.
DevsForge Enterprise Changelog Generator delivering comprehensive automated changelog generation, conventional commit parsing excellence, and semantic versioning automation that transforms release documentation from manual effort into intelligent, professional release management
Coding workflow skills: intelligent commits, push & PR, branch cleanup, CLAUDE.md maintenance, README generation, changelog creation, README updating, and GitHub Actions setup
Interactive setup wizard for configuring any repository with Claude Code best practices, based on Boris Cherny's workflow
Automatically validates plugin files (marketplace.json, plugin.json, hooks.json) after edits using claude plugin validate
Bookmark management for Claude Code
Front door to dotfiles bin scripts - say, quarantine, and downloads domains with full observability
Expert guidance for creating high-quality Claude Code skills following Anthropic's best practices
Cross-platform clipboard operations - copy and paste text with structured error handling
No model invocation
Executes directly as bash, bypassing the AI model
No model invocation
Executes directly as bash, bypassing the AI model
Runs pre-commands
Contains inline bash commands via ! syntax
Runs pre-commands
Contains inline bash commands via ! syntax
Share bugs, ideas, or general feedback.
Modern TypeScript starter template with enterprise-grade tooling.
curl -fsSL https://bun.sh/install | bash)gh auth login)Create a new repo from this template and set it up in one command:
# Create repo from template
gh repo create myusername/my-lib --template nathanvale/bun-typescript-starter --public --clone
# Run setup (interactive)
cd my-lib
bun run setup
For automated/scripted setups, pass all arguments via CLI flags:
# Create repo from template
gh repo create myusername/my-lib --template nathanvale/bun-typescript-starter --public --clone
cd my-lib
# Run setup with all arguments (no prompts)
bun run setup -- \
--name "@myusername/my-lib" \
--description "My awesome library" \
--author "Your Name" \
--yes
npx degit nathanvale/bun-typescript-starter my-lib
cd my-lib
bun run setup
The setup script configures your project and optionally creates the GitHub repository with all settings pre-configured.
bun run setup
Prompts for:
@myusername/my-lib or my-lib)bun run setup -- [options]
| Flag | Short | Description |
|---|---|---|
--name | -n | Package name (e.g., @myusername/my-lib) |
--repo | -r | Repository name (defaults to package name) |
--user | -u | GitHub username/org (auto-detected from gh) |
--description | -d | Project description |
--author | -a | Author name |
--yes | -y | Skip confirmation prompts (auto-yes) |
--no-github | Skip GitHub repo creation/configuration | |
--help | -h | Show help |
package.json and .changeset/config.jsonbun installgh repo createThis guide walks through the full process of creating a new package and publishing it to npm.
# Create and clone from template
gh repo create myusername/my-lib --template nathanvale/bun-typescript-starter --public --clone
cd my-lib
# Interactive mode
bun run setup
# Or non-interactive mode
bun run setup -- \
--name "@myusername/my-lib" \
--description "My awesome library" \
--author "Your Name" \
--yes
Install the Changeset Bot GitHub App on your repo. It comments on every PR with changeset status so you know at a glance whether version bumps are queued.
The bot works alongside the
autogenerate-changeset.ymlworkflow — the bot comments instantly, and the workflow auto-generates a changeset file if one is missing.
Before publishing, you need to add your npm token to GitHub secrets.
Go to npmjs.com → Access Tokens → Generate New Token → Granular Access Token
Configure the token:
github-actions-publish (or any name)Without "Bypass 2FA", CI/CD publishing will fail with "Access token expired or revoked"
Copy the token (starts with npm_)