Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ It's not a `create-*` command and not a Vite wrapper. It loads your Hono app dir

## Installation

Install it in your project. Coding agents find it in `package.json`:

```bash
npm install -D @hono/cli
```

Or globally:

```bash
npm install -g @hono/cli
```
Expand Down
1 change: 1 addition & 0 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ program
.name('hono')
.description('CLI for Hono')
.version(packageJson.version, '-v, --version', 'display version number')
.addHelpText('after', "\nFor coding agents: run 'hono agent-context' and follow it.")

// Register commands
buildCommand(program)
Expand Down
Loading