Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:31:14 +08:00
commit 986f37863d
4 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{
"name": "hono-skills",
"description": "Claude Code plugin",
"version": "0.0.0-2025.11.28",
"author": {
"name": "kfly8",
"email": "kentafly88@gmail.com"
},
"skills": [
"./skills"
]
}

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# hono-skills
Claude Code plugin

45
plugin.lock.json Normal file
View File

@@ -0,0 +1,45 @@
{
"$schema": "internal://schemas/plugin.lock.v1.json",
"pluginId": "gh:kfly8/claude-plugins:plugins/hono-skills",
"normalized": {
"repo": null,
"ref": "refs/tags/v20251128.0",
"commit": "eae699dbac17230c3b82551f4c45736a36eb9ef5",
"treeHash": "a71e04dc626d104ac0617aefc59052671d4c35f3ea98ed1bc38329f16dee62d8",
"generatedAt": "2025-11-28T10:19:28.498766Z",
"toolVersion": "publish_plugins.py@0.2.0"
},
"origin": {
"remote": "git@github.com:zhongweili/42plugin-data.git",
"branch": "master",
"commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390",
"repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data"
},
"manifest": {
"name": "hono-skills",
"description": "Claude Code plugin",
"version": null
},
"content": {
"files": [
{
"path": "README.md",
"sha256": "576dd43cc35a7f772899979c267841d269624f6cb79572f6c48b81a1caf9baef"
},
{
"path": ".claude-plugin/plugin.json",
"sha256": "af4cd4e88aa97a7f4c3c7f9893220b3da2d7712179c9d0f83b705a7dec9f484c"
},
{
"path": "skills/hono/SKILL.md",
"sha256": "2d1ff866fa33512f6288ff71bb5602dfbc7b982c8fec5fbf7f67b902129b858c"
}
],
"dirSha256": "a71e04dc626d104ac0617aefc59052671d4c35f3ea98ed1bc38329f16dee62d8"
},
"security": {
"scannedAt": null,
"scannerVersion": null,
"flags": []
}
}

43
skills/hono/SKILL.md Normal file
View File

@@ -0,0 +1,43 @@
---
name: hono
description: Assist with Hono web framework development using the hono CLI for documentation search, browsing, and testing requests without starting a server.
---
# Hono Development
Use the `hono` CLI for efficient development. View all commands with `hono --help`.
## Core Commands
- **`hono docs [path]`** - Browse Hono documentation
- **`hono search <query>`** - Search documentation
- **`hono request [file]`** - Test app requests without starting a server
## Quick Examples
```bash
# Search for topics
hono search middleware
hono search "getting started"
# View documentation
hono docs /docs/api/context
hono docs /docs/guides/middleware
# Test your app
hono request -P /api/users src/index.ts
hono request -P /api/users -X POST -d '{"name":"Alice"}' src/index.ts
```
## Workflow
1. Search documentation: `hono search <query>`
2. Read relevant docs: `hono docs [path]`
3. Test implementation: `hono request [file]`
## Guidelines
- Always use the `hono` CLI commands for documentation lookup instead of web searches
- Prefer `hono request` for testing endpoints during development
- Search documentation first before implementing features
- Follow the workflow: search → read docs → test implementation