.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/klawsh/klaw.sh
home/skills/klawsh/klaw.sh
klawsh avatar

klaw.sh

byklawsh· 1 skill

Stars

634

Forks

41

Category

Productivity & Workflow

View on GitHub

TL;DR

You are running inside klaw, an open-source AI agent orchestration platform. This document explains your capabilities and how to use them effectively.

How to install klaw.sh?

klawsh/klaw.sh
$npx -y skills add klawsh/klaw.sh --skill klaw.sh

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/klawsh/klaw.sh" --skill "klawsh/klaw.sh"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/klawsh/klaw.sh" that are relevant to the current task. Run `npx skills add "https://github.com/klawsh/klaw.sh"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1<p align="center">
2 <img src="docs/assets/klaw-logo.png" alt="klaw" width="140" />
3</p>
4 
5<h1 align="center">klaw</h1>
6 
7<p align="center">
8 <strong>kubectl for AI Agents</strong>
9</p>
10 
11<p align="center">
12 Enterprise AI agent orchestration. Manage, monitor, and scale your AI workforce.<br/>
13 One binary. Deploys in seconds. Scales to hundreds of agents.
14</p>
15 
16<p align="center">
17 <a href="https://klaw.sh/docs">Documentation</a> •
18 <a href="#what-is-klaw">What is klaw?</a> •
19 <a href="#quick-start">Quick Start</a> •
20 <a href="#slack-control">Slack Control</a> •
21 <a href="#architecture">Architecture</a>
22</p>
23 
24<p align="center">
25 <img src="https://img.shields.io/badge/license-each::labs-green.svg" alt="License" />
26 <img src="https://img.shields.io/badge/go-1.24+-00ADD8.svg" alt="Go Version" />
27 <img src="https://img.shields.io/github/stars/klawsh/klaw.sh?style=social" alt="Stars" />
28 <a href="https://deepwiki.com/klawsh/klaw.sh"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
29</p>
30 
31---
32 
33## What is klaw?
34 
35**klaw** is enterprise AI agent orchestration — like kubectl, but for AI agents.
36 
37```bash
38# See all your agents
39$ klaw get agents
40 
41NAME NAMESPACE STATUS MODEL LAST RUN
42lead-scorer sales running claude-sonnet-4 2m ago
43competitor-watch research idle gpt-4o 1h ago
44ticket-handler support running claude-sonnet-4 30s ago
45report-gen analytics idle claude-sonnet-4 6h ago
46 
47# Check what an agent is doing
48$ klaw describe agent lead-scorer
49 
50Name: lead-scorer
51Namespace: sales
52Status: Running
53Model: claude-sonnet-4-20250514
54Skills: crm, web-search
55Tools: hubspot, clearbit, web_fetch
56Last Run: 2 minutes ago
57Next Run: in 58 minutes (cron: 0 * * * *)
58 
59# View real-time logs
60$ klaw logs lead-scorer --follow
61 
62[14:32:01] Fetching new leads from HubSpot...
63[14:32:03] Found 12 new leads
64[14:32:05] Analyzing lead: john@acme.com
65[14:32:08] Score: 85/100 (Enterprise, good fit)
66[14:32:09] Updated HubSpot lead score
67...
68```
69 
70### Or control everything from Slack
71 
72```
73You: @klaw status
74 
75klaw: 📊 Agent Status
76 ├── lead-scorer (sales) — running, 2m ago
77 ├── competitor-watch (research) — idle
78 ├── ticket-handler (support) — running, 30s ago
79 └── report-gen (analytics) — idle
80 
81You: @klaw run competitor-watch
82 
83klaw: 🚀 Starting competitor-watch...
84 Checking competitor.com/pricing...
85 Found 2 pricing changes since yesterday.
86 Posted summary to #competitive-intel
87```
88 
89---
90 
91## The Problem
92 
93You're running AI agents in production:
94- **Lead Scorer** — analyzes CRM leads every hour
95- **Competitor Watch** — monitors competitor websites daily
96- **Ticket Handler** — auto-responds to support tickets
97- **Report Generator** — creates weekly analytics reports
98 
99But managing them is chaos:
100 
101| Challenge | Current State | With klaw |
102|-----------|---------------|-----------|
103| **Visibility** | "Is the agent running? What's it doing?" | `klaw get agents`, `klaw logs` |
104| **Isolation** | Sales agent accessing support secrets | Namespaces with scoped permissions |
105| **Scheduling** | Messy cron jobs, Lambda functions | `klaw cron create` — built-in |
106| **Scaling** | Manual server provisioning | `klaw node join` — auto-dispatch |
107| **Debugging** | grep through CloudWatch | `klaw logs agent --follow` |
108| **Deployment** | Complex setup, many dependencies | Single binary, one command |
109 
110**OpenClaw works, but deployment is painful and scaling is worse.**
111 
112klaw brings Kubernetes-style operations to AI agents. One binary. Deploys in seconds.
113 
114---
115 
116## Quick Start
117 
118### 1. Install
119 
120```bash
121curl -fsSL https://klaw.sh/install.sh | sh
122```
123 
124### 2. Configure
125 
126```bash
127# Pick one provider
128export ANTHROPIC_API_KEY=sk-ant-... # Direct Anthropic
129export OPENROUTER_API_KEY=sk-or-... # OpenRouter (100+ models)
130export EACHLABS_API_KEY=... # each::labs (300+ models)
131```
132 
133### 3. Run

Preview

klawsh/klaw.shklawsh/klaw.sh

$ npx -y skills add klawsh/klaw.sh --skill klaw.sh

▸ installing to .claude/skills…

✓ klaw.sh ready

Repoklawsh/klaw.sh
TypeSkills
CategoryProductivity & Workflow
ForDeveloperOps
UpdatedMar 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. juliusbrussee avatarcavemanUltra-compressed communication mode. Cuts output tokens 65% (measured) by speaking like caveman while keeping full technical accuracy.SkillsJul 2026391k93k
  2. larksuite avatarlark-im飞书即时通讯:收发消息和管理群聊。发送和回复消息、搜索聊天记录、管理群聊成员、上传下载图片和文件(支持大文件分片下载)、管理表情回复、发送应用内/短信/电话加急、发送和处理交互卡片(Interactive…SkillsJul 2026390k16k
  3. larksuite avatarlark-calendar飞书日历:管理日历日程和会议室。查看/搜索日程、创建/更新日程、管理参会人、查询忙闲和推荐时段、预定会议室。当用户需要查看日程安排、创建/修改会议、查询/预定会议室时使用。不负责:查询过去的视频会议记录(走 lark-vc)、待办任务(走 lark-task)。SkillsJul 2026388k16k
  4. larksuite avatarlark-contact飞书 / Lark 通讯录:按姓名 / 邮箱解析成 open_id,或按 open_id 反查姓名 / 部门 / 邮箱 / 联系方式 / 个人状态 / 签名。当用户提到某人姓名要下一步发消息 / 排日程,或拿到 open_id 想查具体信息时使用。不负责部门树遍历、按部门列员工、组织架构图,这类需求走原生…SkillsJul 2026387k16k
  5. larksuite avatarlark-workflow-meeting-summary会议纪要整理工作流:汇总指定时间范围内的会议纪要并生成结构化报告。当用户需要整理会议纪要、生成会议周报、回顾一段时间内的会议内容时使用。SkillsJul 2026386k16k
  6. larksuite avatarlark-workflow-standup-report日程待办摘要:编排 calendar +agenda 和 task +get-my-tasks,生成指定日期的日程与未完成任务摘要。适用于了解今天/明天/本周的安排。SkillsJul 2026386k16k