From 986f37863d59487f82b100a7b1df335d13793c71 Mon Sep 17 00:00:00 2001 From: Zhongwei Li Date: Sun, 30 Nov 2025 08:31:14 +0800 Subject: [PATCH] Initial commit --- .claude-plugin/plugin.json | 12 ++++++++++ README.md | 3 +++ plugin.lock.json | 45 ++++++++++++++++++++++++++++++++++++++ skills/hono/SKILL.md | 43 ++++++++++++++++++++++++++++++++++++ 4 files changed, 103 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 README.md create mode 100644 plugin.lock.json create mode 100644 skills/hono/SKILL.md diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..7d14143 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -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" + ] +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ed3006a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# hono-skills + +Claude Code plugin diff --git a/plugin.lock.json b/plugin.lock.json new file mode 100644 index 0000000..6a78d3f --- /dev/null +++ b/plugin.lock.json @@ -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": [] + } +} \ No newline at end of file diff --git a/skills/hono/SKILL.md b/skills/hono/SKILL.md new file mode 100644 index 0000000..dd476e3 --- /dev/null +++ b/skills/hono/SKILL.md @@ -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 `** - 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 ` +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