By getbonzo
Starter kit for agentic development with Claude Code. Includes structured logging (write-logs), validation hooks, and reusable skill/agent templates.
Coordinates multiple folder-scout agents to summarize an entire project's structure and produce a combined overview. Use when you need a high-level understanding of a codebase or project.
Summarizes a folder's contents and structure by using the summarize-folder skill, then validates the output. Use proactively when a user needs to understand or document a part of the codebase.
Format raw meeting notes into a structured summary with action items.
You are a folder summarizer. Given a folder path and a detail level, you will read the folder's contents and produce a clear, plain-English summary of what is in it — what each file does, how things are organized, and any patterns or conventions worth noting.
Logs skill and agent activity to the logs/ directory. Invoke as the final step of any skill or agent workflow to capture input, decisions, output, and tool I/O for traceability.
A hands-on introduction to building AI workflows with Claude Code. This repo walks you through common concepts and best practices using a simple, guided example — no prior experience required.
This isn't a mandate. It's a place to see patterns in action — skills, hooks, logging, subagents — so you can decide what works for your team and adopt what makes sense.
Who is this for? Everyone. Developers, data engineers, product managers, technical leads — anyone curious about building structured AI workflows. The tutorial is written for all audiences, regardless of technical background.
Head to the .starthere/ folder and work through the exercise from the beginning. It should take about 30 minutes.
By the end, you'll have built a working skill, added logging, created a validation hook, and understood how the pieces fit together.
agentic-jumpstart/
├── .starthere/ # Start here — guided tutorial (~30 min)
├── CLAUDE.md # Project-level context (loaded every session)
├── .claude/
│ ├── settings.json # Hook configuration (logging, validation)
│ ├── hooks/validators/ # Validation scripts for hooks
│ ├── skills/meeting-notes-sample/ # Completed example: meeting notes skill
│ ├── skills/sample-skill/ # Template: summarize a folder
│ ├── skills/write-logs/ # Logging utility (used by all skills/agents)
│ ├── agents/sample-agent.md # Template: focused subagent
│ └── agents/orchestrator-agent.md # Template: multi-agent coordinator
├── logs/ # Log output directory
├── references/ # Deeper reference docs
│ ├── building-blocks.md # The four primitives of agentic development
│ ├── when-to-use-what.md # Decision guide: skills vs agents vs hooks
│ ├── logging-guide.md # How logging and traceability work
│ └── built-in-variables.md # Environment variables by component type
├── snippets/
│ └── agentic-snippets.code-snippets # VS Code snippets for scaffolding components
└── README.md # You are here
Once you've completed the tutorial, these docs go deeper on specific topics:
| Document | What You'll Learn |
|---|---|
| Building Blocks | The four primitives: prompts, agents, tools, and context |
| When to Use What | Decision guide for choosing between skills, subagents, hooks, and orchestrators |
| Logging Guide | How the logging system works, how to trace requests, and how to debug with logs |
| Built-in Variables | Every environment variable available in hooks, skills, and agents |
The snippets/ folder contains templates for quickly scaffolding new components:
| Prefix | What It Creates |
|---|---|
agp | Agentic prompt with full frontmatter and logging |
agsk | Skill template with argument handling and built-in variables |
agag | Subagent template with skill references and decision logging |
agor | Orchestrator template with Task tool spawning pattern |
aghk | Hook script with stdin/stdout/stderr handling and exit codes |
To install: open VS Code, press Ctrl+Shift+P (or Cmd+Shift+P on Mac), type "Snippets: Configure User Snippets", and paste the contents of snippets/agentic-snippets.code-snippets into a new or existing snippets file.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub getbonzo/agentic-jumpstart --plugin agentic-jumpstartUnified capability management center for Skills, Agents, and Commands.
Skills for creating new agent skills for Claude Code and VS Code Copilot
Claude Code の SubAgent(agents/*.md)を正しく定義するためのベストプラクティスガイド。 YAML frontmatter、ツール選択、3-Phase 構造、コンテキスト受け渡し、アンチパターンを網羅。 Use when: agents/*.md を書く、SubAgent 定義を改善する、エージェントの動作が想定外、 コンテキストが渡らない、ツール選択に迷う。 Triggers: "subagent", "agent definition", "agents/*.md", "エージェント定義", "サブエージェント", "3-Phase", "context passing", "コンテキスト渡し", "tool selection", "ツール選択", "subagent_type", "bypassPermissions"
Open collection of AI agent skills — reusable, framework-agnostic SKILL.md packages
Editorial "Agent Architect" bundle for Claude Code from Antigravity Awesome Skills.
Ultimate Claude Code skill creator. Design, scaffold, build, review, evolve, and publish production-grade AI agent skills following the Agent Skills open standard and 3-layer architecture.