Reusable AI Skill Kits for coding agents (Claude Code and any other subagent/slash-command-compatible tool).
FAQ
agentic-awesome-kits is a Claude Code plugin with 64 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes ci, compose, dockerfile. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add KhaiTrang1995/agentic-awesome-kits --agent claude-code
Reusable AI Skill Kits for coding agents (Claude Code and any other subagent/slash-command-compatible tool). Each kit is a self-contained package of Skills (slash commands), Rules (conventions the agent must follow), and Templates (fill-in-the-blank output baselines) โ copy .claude/ into your project and the skills work immediately.
/dockerfile .NET 10 Minimal API --prod
/deploy container-api --namespace prod --replicas 3 --with-ingress
/log-check booking-api --env prod --since 1h
Note โ examples use .NET 10.
Sample commands,Dockerfile.dotnet, and related container templates in this repo target .NET 10 (e.g. Minimal API). Skills are stack-agnostic: pass another runtime in the prompt when you need it.
Browse the visual index: index.html ยท DevOps docs: kits/devops/ ยท All kits: kits/
Live site (GitHub Pages + Jekyll):
https://KhaiTrang1995.github.io/agentic-awesome-kits/
Prompting an agent to "write me a Dockerfile" gets you a Dockerfile โ not necessarily a multi-stage, non-root, healthcheck'd one your team would actually ship. A kit turns that tribal knowledge into a rules/*.md file the agent reads before generating anything, so the output is consistent whether it's you, a teammate, or a different agent session asking.
agentic-awesome-kits/
kits/ # all public kits by category
devops/
software/
packages/
agentic-awesome-kits/ # npx agentic-awesome-kits (plan installer)
index.html # catalog site
| Category | Status | Kits |
|---|---|---|
| kits/devops | Available | Run: docker-kit, docker-swarm-kit, k8s-kit ยท Observe: zabbix-kit, elk-kit (/log-check), grafana-kit (/loki-query) |
| kits/software | Partial | drawio-kit โ .drawio architecture / flowchart / ERD ยท runner-kit-3d โ 3D endless-runner skills (live demos: demos/runner-kit-3d/) ยท more role kits TBD |
| Kit | Skills (highlight) |
|---|---|
| docker-kit | /dockerfile, /compose, /ci |
| docker-swarm-kit | /stack, /service, /secret |
| k8s-kit | /deploy, /helm, /monitor |
| zabbix-kit | /zabbix-check, /zabbix-trigger, โฆ + ZABBIX-BRAIN.md |
| elk-kit | /log-check, /es-query, /logstash, โฆ + ELK-BRAIN.md |
| grafana-kit | /loki-query, /grafana-dashboard, /grafana-alert, โฆ + GRAFANA-BRAIN.md |
Log check quick map
Elasticsearch / Kibana โ elk-kit /log-check
Loki / Grafana โ grafana-kit /loki-query
Zabbix problem / log item โ zabbix-kit /zabbix-check
| Kit | Skills (highlight) |
|---|---|
| drawio-kit | /architecture, /flowchart, /erd, /diagram (draw.io CLI for advanced) |
| runner-kit-3d | /runner, /runner-new, /runner-tune ยท engine: demos/runner-kit-3d/ |
git clone <this-repo>
cp -r agentic-awesome-kits/kits/devops/docker-kit/.claude/ your-project/.claude/
cp -r agentic-awesome-kits/kits/devops/docker-kit/_templates/ your-project/_templates/
# In Claude Code (or any compatible agent) โ example uses .NET 10:
/dockerfile .NET 10 Minimal API --prod
You can copy multiple kits into the same project. Watch for skill-name collisions across kits (rare, but check .claude/skills/ before merging).
{kit-name}/
.claude/
skills/
{skill-name}/
SKILL.md โ trigger, input examples, process, output, references
rules/
{convention}.md โ what the agent must/must never do when generating output
_templates/
{output-template} โ ready-to-fill baseline (Dockerfile, .yml, ...)
references/ โ optional cheatsheets (observability kits)
*-BRAIN.md โ optional long-lived guidance
README.md โ how to use this specific kit
Dockerfiles, manifests, queries, and checklists โ it does not run docker build, kubectl apply, helm install, or mutate prod monitoring systems. A human reviews and runs those. See each kit's approval-gate.md.*-conventions.md file instead of repeating the same security/resource rules inside every skill.docker-swarm-kit points at docker-kit's Dockerfile conventions rather than restating them.Want to improve a kit, add a skill, or fix docs? See CONTRIBUTING.md for structure, checklists, and PR guidelines.
This repo publishes a static docs site with Jekyll (GitHub Pages).
| File | Role |
|---|---|
_config.yml | Site title, baseurl, exclude rules for kit internals |
Gemfile | github-pages + plugins for local parity |
.github/workflows/pages.yml | Build & deploy on push to main |
index.html / kits/devops/index.html | Docs UI |
Enable once: repo Settings โ Pages โ Build and deployment โ Source: GitHub Actions.
# Ruby 3+ recommended
bundle install
bundle exec jekyll serve
# open http://127.0.0.1:4000/agentic-awesome-kits/
Kit skill packages (
.claude/, templates, brains) are excluded from the Jekyll site so they stay source-only on GitHub. Use the HTML docs for browsing; clone the repo for skills.
CC BY-NC-SA 4.0 โ share, adapt, and build on these kits freely, including commercially-adjacent internal use, but do not resell them and keep derivatives under the same license with attribution.
/log-check), Grafana/Loki (/loki-query)kits/ parent โ devops + software categorieskits/software/drawio-kit โ technical diagrams as .drawiokits/software/runner-kit-3d โ 3D endless-runner skills + demos/runner-kit-3dnpx agentic-awesome-kits plan installer (packages/agentic-awesome-kits)_config.yml
.github/
FUNDING.yml
workflows/
pages.yml
.gitignore
404.html
CONTRIBUTING.md
demos/
index.html
runner-kit-3d/
docs/
LEARN.md
games/
loop/
game.js
index.html
moto/
game.js
index.html
ski/
ski-side/
game.js
index.html
game.js
index.html
wing/
game.js
index.html
index.html
kit/
audio.js
core.js
effects.js
fonts.css
hud.js
index.js
input.js
leaderboard.js
spawner.js
style.css
LICENSE
package.json
README.md
scripts/
new-game.mjs
Gemfile
index.html
kits/
devops/
docker-kit/
_templates/
docker-compose.yml
Dockerfile.dotnet
.claude/
rules/
approval-gate.md
docker-conventions.md
skills/
ci/
SKILL.md
compose/
SKILL.md
dockerfile/
SKILL.md
README.md
docker-swarm-kit/
_templates/
docker-stack.yml
traefik-proxy-stack.yml
.claude/
rules/
approval-gate.md
swarm-conventions.md
skills/
secret/
SKILL.md
service/
SKILL.md
stack/
SKILL.md
README.md
elk-kit/
_templates/
elk-health-report.md
es-query.md
kibana-dashboard.md
log-check-report.md
logstash-pipeline.conf
.claude/
rules/
approval-gate.md
elk-conventions.md
naming-conventions.md
skills/
elk/
elk-health/
SKILL.md
SKILL.md
es-query/
SKILL.md
kibana-dashboard/
SKILL.md
log-check/
SKILL.md
logstash/
SKILL.md
ELK-BRAIN.md
README.md
references/
elk-architecture.md
kql-cheat.md
log-patterns.md
grafana-kit/
_templates/
alert-rule.md
dashboard-spec.md
explore-session.md
loki-log-check.md
.claude/
rules/
approval-gate.md
grafana-conventions.md
naming-conventions.md
skills/
grafana/
grafana-alert/
SKILL.md
grafana-dashboard/
SKILL.md
grafana-explore/
SKILL.md
SKILL.md
loki-query/
SKILL.md
GRAFANA-BRAIN.md
README.md
references/
logql-cheat.md
panel-design.md
promql-basics.md
index.html
k8s-kit/
_templates/
deployment.yaml
helm-values.yaml
hpa.yaml
ingress.yaml
prometheus-rules.yaml
service.yaml
.claude/
rules/
approval-gate.md
k8s-conventions.md
skills/
deploy/
SKILL.md
helm/
SKILL.md
monitor/
SKILL.md
README.md
README.md
zabbix-kit/
_templates/
host-spec.md
problem-check.md
template-spec.md
trigger-spec.md
.claude/
rules/
approval-gate.md
naming-conventions.md
zabbix-conventions.md
skills/
zabbix/
zabbix-check/
SKILL.md
zabbix-host/
SKILL.md
zabbix-template/
SKILL.md
zabbix-trigger/
SKILL.md
SKILL.md
README.md
references/
log-check-via-zabbix.md
zabbix-item-types.md
zabbix-severity.md
ZABBIX-BRAIN.md
README.md
software/
drawio-kit/
_templates/
architecture.drawio
erd.drawio
flowchart.drawio
.claude/
rules/
approval-gate.md
drawio-conventions.md
naming-conventions.md
skills/
architecture/
SKILL.md
diagram/
SKILL.md
erd/
SKILL.md
flowchart/
SKILL.md
data/
lobe-icons.json
SHAPE-INDEX-NOTICE.md
shape-index.json.gz
DRAWIO-BRAIN.md
LICENSE-drawio-skill
README.md
references/
autolayout.md
diagram-types.md
live-infra.md
mermaid-authoring.md
shapes.md
style-extraction.md
style-presets.md
toolbox.md
troubleshooting.md
xml-authoring.md
scripts/
aiicons.py
autolayout.py
c4.py
composeimports.py
dockerimports.py
drawio2mermaid.py
drawio2pptx.py
drawiodiff.py
drawiohtml.py
encode_drawio_url.py
explain.py
goimports.py
heatmap.py
jsimports.py
k8simports.py
openapiimports.py
pyclasses.py
pyimports.py
repair_png.py
rustimports.py
seqlayout.py
shapesearch.py
sqlerd.py
svgflow.py
tfimports.py
tfstate.py
timelapse.py
validate.py
styles/
built-in/
colorblind-safe.json
corporate.json
dark.json
default.json
handdrawn.json
schema.json
README.md
runner-kit-3d/
_templates/
game-index.html
game-side-jump.js
.claude/
rules/
approval-gate.md
naming-conventions.md
runner-conventions.md
skills/
runner/
runner-new/
SKILL.md
runner-tune/
SKILL.md
SKILL.md
README.md
references/
control-patterns.md
learn.md
RUNNER-BRAIN.md
LICENSE
packages/
agentic-awesome-kits/
bin/
cli.js
LICENSE
package.json
payload/
bundles/
all.json
devops.json
software.json
catalog.json
kits/
devops/
docker-kit/
_templates/
docker-compose.yml
Dockerfile.dotnet
.claude/
rules/
approval-gate.md
docker-conventions.md
skills/
ci/
SKILL.md
compose/
SKILL.md
dockerfile/
SKILL.md
README.md
docker-swarm-kit/
_templates/
docker-stack.yml
traefik-proxy-stack.yml
.claude/
rules/
approval-gate.md
swarm-conventions.md
skills/
secret/
SKILL.md
service/
SKILL.md
stack/
SKILL.md
README.md
elk-kit/
_templates/
elk-health-report.md
es-query.md
kibana-dashboard.md
log-check-report.md
logstash-pipeline.conf
.claude/
rules/
approval-gate.md
elk-conventions.md
naming-conventions.md
skills/
elk/
elk-health/
SKILL.md
SKILL.md
es-query/
SKILL.md
kibana-dashboard/
SKILL.md
log-check/
SKILL.md
logstash/
SKILL.md
ELK-BRAIN.md
README.md
references/
elk-architecture.md
kql-cheat.md
log-patterns.md
grafana-kit/
_templates/
alert-rule.md
dashboard-spec.md
explore-session.md
loki-log-check.md
.claude/
rules/
approval-gate.md
grafana-conventions.md
naming-conventions.md
skills/
grafana/
grafana-alert/
SKILL.md
grafana-dashboard/
SKILL.md
grafana-explore/
SKILL.md
SKILL.md
loki-query/
SKILL.md
GRAFANA-BRAIN.md
README.md
references/
logql-cheat.md
panel-design.md
promql-basics.md
k8s-kit/
_templates/
deployment.yaml
helm-values.yaml
hpa.yaml
... 144 moreยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic