🎯

ai-engineer

🎯Skill

from kriscard/kriscard-claude-plugins

VibeIndex|
What it does

Assists AI developers in creating, optimizing, and deploying machine learning models and AI development workflows with specialized tools and guidance.

πŸ“¦

Part of

kriscard/kriscard-claude-plugins(20 items)

ai-engineer

Installation

pnpmRun with pnpm
pnpm install # Install dependencies
pnpmRun with pnpm
pnpm run create-plugin my-plugin --description "..." # Create new plugin
pnpmRun with pnpm
pnpm run sync # Update marketplace.json
pnpmRun with pnpm
pnpm run typecheck # Type check
pnpmRun with pnpm
pnpm run format # Format code
πŸ“– Extracted from docs: kriscard/kriscard-claude-plugins
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# kriscard-claude-plugins

Personal Claude Code plugin marketplace - skills, commands, and agents for maximum productivity.

Installation

Add this marketplace from GitHub:

```bash

claude plugin marketplace add kriscard/kriscard-claude-plugins

```

Install plugins you need:

```bash

claude plugin install essentials@kriscard # Core workflow tools

claude plugin install assistant@kriscard # Staff Engineer workflow assistant

claude plugin install ideation@kriscard # Brain dumps β†’ specs

claude plugin install content@kriscard # Blog posts & talks

claude plugin install architecture@kriscard # System design

claude plugin install ai-development@kriscard # LLM/RAG tools

claude plugin install developer-tools@kriscard # Coding agents

claude plugin install testing@kriscard # Test specialists

claude plugin install neovim-advisor@kriscard # Neovim optimization

claude plugin install dotfiles-optimizer@kriscard # Dotfiles analysis

claude plugin install obsidian-second-brain@kriscard # Knowledge management

claude plugin install chromedev-tools@kriscard # Chrome DevTools integration

claude plugin install studio-startup@kriscard # Project startup orchestration

claude plugin install til@kriscard # TIL documentation

claude plugin install interactive-learning@kriscard # Learning tutorials

```

Updating Plugins

To get the latest plugin changes, manually clear the cache:

```bash

rm -rf ~/.claude/plugins/cache/kriscard

```

Then reinstall the plugins you need. This workaround is needed because Claude Code's automatic plugin updates don't always work correctly ([tracking issue](https://github.com/anthropics/claude-code/issues/17361)).

Plugins

| Plugin | Description | How to Use |

|--------|-------------|------------|

| [essentials](./plugins/essentials) | Core workflow tools - commits, research, deep thinking, PRs, and discipline enforcement | Commands: /commit, /pr, /ultrathink, /init-ultrathink, /de-slopify, /search-web, /issue
Auto-enforces: Skill usage across all interactions |

| [assistant](./plugins/assistant) | Engineer workflow assistant - standups, career tracking, quality checks, context management | Commands: /standup, /weekly-summary, /quality-check, /context-save, /context-restore, /staff-progress
Auto-suggests: Actions after commits/PRs, learning from your patterns |

| [ideation](./plugins/ideation) | Transform brain dumps into structured implementation artifacts | Natural language: "I want to build..."
Commands: /refine-spec, /validate-output
Workflow: Confidence β†’ Questions β†’ Contract β†’ PRDs β†’ Specs |

| [content](./plugins/content) | Blog posts, documentation, and conference talks | Commands: /write-blog, /create-talk
Natural language: "Write a blog about...", "Help me document..." |

| [architecture](./plugins/architecture) | System design, technical leadership, and architecture documentation | Commands: /arch-doc, /check-spec, /analyze-repo, /explain-codebase, /create-sprint-plan
Skills: Senior architect, CTO advisor, product strategist |

| [ai-development](./plugins/ai-development) | LLM/RAG development and prompt engineering | Commands: /deep-analyze
Skills: AI engineer, prompt engineer |

| [developer-tools](./plugins/developer-tools) | Coding, frontend, and debugging specialists | Natural language: "Build a login form", "Fix this bug"
Skills: /react-best-practices for React audits
Auto-selects: Best specialist agent for your task |

| [testing](./plugins/testing) | Unit, integration, and E2E testing | Commands: /test-suite (runs all layers)
Agents: Unit, integration, automation test developers |

| [neovim-advisor](./plugins/neovim-advisor) | Neovim configuration optimization and best practices | Commands: /nvim-check-config, /nvim-perf, /nvim-plugins, /nvim-lsp
Natural language: "Optimize my neovim config", "Why is startup slow?" |

| [dotfiles-optimizer](./plugins/dotfiles-optimizer) | Analyze and optimize dotfiles with security checks and modern tool recommendations | Commands: /dotfiles-optimize, /dotfiles-audit
Natural language: "Check my dotfiles", "Optimize my shell config" |

| [obsidian-second-brain](./plugins/obsidian-second-brain) | Obsidian vault manager - PARA, daily workflows, OKR tracking | Commands: /daily-startup, /process-inbox, /review-okrs, /maintain-vault, /apply-template
Auto-runs: Daily note reminder on startup |

| [chromedev-tools](./plugins/chromedev-tools) | Chrome DevTools integration for frontend development - inspect pages, debug console, analyze performance | Commands: /chromedev:inspect, /chromedev:screenshot, /chromedev:performance, /chromedev:console
Natural language: "Inspect the page", "Check console errors", "Analyze performance" |

| [studio-startup](./plugins/studio-startup) | Complete startup workflow orchestration from idea to MVP - coordinates product strategy, requirements, tech stack selection, architecture, and implementation across web, mobile, API, and CLI projects | Commands: /studio-startup:new
Natural language: "Start a project", "New startup", "Build an MVP", "Create an app"
Workflow: Strategy β†’ Requirements β†’ Tech β†’ Validation β†’ Design β†’ Implementation |

| [til](./plugins/til) | Create TIL (Today I Learned) documentation notes in Obsidian from session learnings | Commands: /til, /til "Project Name"
Auto-creates: Engaging story-like notes with architecture diagrams, code snippets, and lessons learned |

| [interactive-learning](./plugins/interactive-learning) | Interactive tutorial system for learning technologies through guided Q&A with documentation fetching | Commands: /learn , /learn done
Natural language: "Learn React hooks", "Teach me TypeScript generics"
Creates: Obsidian learning notes with concepts and code examples |

Legend: Commands use /command syntax. Natural language triggers work automatically. ⭐ marks primary entry points.

Development

Quick start for contributing:

```bash

pnpm install # Install dependencies

pnpm run create-plugin my-plugin --description "..." # Create new plugin

pnpm run sync # Update marketplace.json

pnpm run typecheck # Type check

pnpm run format # Format code

```

Plugin Structure

```

plugins//

β”œβ”€β”€ .claude-plugin/

β”‚ └── plugin.json # Manifest (required)

β”œβ”€β”€ README.md # Documentation (required)

β”œβ”€β”€ commands/ # Slash commands (*.md)

β”œβ”€β”€ skills/ # Skills (*/SKILL.md)

β”œβ”€β”€ agents/ # Agents (*.md)

└── hooks/ # Event hooks (hooks.json)

```

The pnpm run sync command auto-discovers, validates, and updates the marketplace manifest.

License

MIT

More from this repository10

🎯
dotfiles best practices🎯Skill

Analyzes and recommends optimizations for developer configuration files (dotfiles), ensuring efficient, secure, and standardized system setup and personal development environments.

🎯
interactive teaching🎯Skill

Skill

🎯
product-strategist🎯Skill

Generates comprehensive product strategy documents, conducts market analysis, and provides strategic recommendations for product development and positioning.

🎯
react-best-practices🎯Skill

Skill

🎯
blog-writer🎯Skill

Generates high-quality, structured blog posts by taking input topics, conducting research, and crafting engaging, SEO-optimized content with appropriate tone and style.

🎯
cto-advisor🎯Skill

Provides strategic technology leadership guidance, helping CTOs make informed decisions about architecture, team structure, innovation strategy, and technical roadmaps.

🎯
dotfiles optimizer🎯Skill

Analyzes and optimizes personal dotfile configurations, suggesting improvements, removing redundancies, and ensuring consistent and efficient development environment setup.

🎯
assistant🎯Skill

Supports staff engineers by managing workflow context, tracking progress, generating standups and weekly summaries, and performing automated quality checks.

🎯
doc-coauthoring🎯Skill

Collaboratively drafts and edits documents by tracking contributions, suggesting co-authoring workflows, and managing version control for shared writing projects.

🎯
using-superpowers🎯Skill

Enhances developer productivity by providing advanced AI-powered code manipulation, generation, and optimization techniques across different programming contexts.