npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

claude-feishu-channel

v0.3.5

Published

Bridge a Claude Code session to a Feishu bot

Downloads

999

Readme

Features

  • Full Claude Code agent — file editing, shell commands, search, planning
  • Permission brokering — tool calls post interactive approval cards in Feishu
  • Session persistence — survives process restarts, auto-resumes conversations
  • Queue & interrupt — messages queue during generation; ! prefix interrupts
  • Interactive cards — streaming status, tool activity, thinking blocks, permissions
  • Runtime config/config set to tune behavior without restart

Quick Start

Install

npm install -g claude-feishu-channel

Initialize config

cfc init
# Creates ~/.claude-feishu-channel/config.toml from template

Edit the config with your Feishu credentials:

vim ~/.claude-feishu-channel/config.toml

Run

cfc

The bot connects to Feishu via WebSocket and starts listening for messages.

CLI Options

cfc [options]            Start the service
cfc init                 Create config template at ~/.claude-feishu-channel/config.toml

Options:
  -c, --config <path>    Path to config.toml (overrides default location)
  -v, --version          Show version number
  -h, --help             Show help

Prerequisites

  • Node.js >= 20
  • Claude CLIclaude binary in $PATH (or set claude.cli_path in config)
  • Feishu bot app — created at open.feishu.cn

Commands

| Command | Description | |---------|-------------| | /new | Start a new session (clear context) | | /stop | Interrupt current generation | | /status | Show session state, model, token usage | | /sessions | List all known sessions | | /projects | List all configured project aliases | | /resume <id> | Resume a previous session | | /cd <path> | Change working directory (with confirm card) | | /project <alias> | Switch to a configured project alias | | /mode <mode> | Set permission mode: default, acceptEdits, plan, bypassPermissions | | /model <name> | Switch Claude model | | /config show | Display current configuration | | /config set <key> <value> | Change a config value at runtime | | /config set <key> <value> --persist | Change and write back to config.toml | | /help | Show available commands |

Special inputs:

| Input | Effect | |-------|--------| | !<text> | Interrupt current turn + run <text> as new turn | | Plain text | Queue as next turn (or start immediately if idle) |

Configuration

See config.example.toml for all options with comments.

Sections

| Section | Keys | Description | |---------|------|-------------| | [feishu] | app_id, app_secret, encrypt_key, verification_token | Feishu bot credentials | | [access] | allowed_open_ids, unauthorized_behavior | Who can talk to the bot | | [claude] | default_cwd, default_permission_mode, default_model, cli_path, permission_timeout_seconds, permission_warn_before_seconds | Claude agent defaults | | [render] | inline_max_bytes, hide_thinking, show_turn_stats | Card rendering options | | [persistence] | state_file, log_dir, session_ttl_days | State and log paths | | [logging] | level | Log level: trace, debug, info, warn, error | | [projects] | <alias> = "<path>" | Project aliases for /project command |

Runtime-settable keys

These keys can be changed via /config set without restart:

render.hide_thinking, render.show_turn_stats, render.inline_max_bytes, logging.level, claude.default_model, claude.default_cwd, claude.default_permission_mode, claude.permission_timeout_seconds, claude.permission_warn_before_seconds

Architecture

Feishu WebSocket
      │
      ▼
FeishuGateway (event decryption, dedup, access control)
      │
      ├─ onMessage ──▶ parseInput (router)
      │                    │
      │                    ├─ /command ──▶ CommandDispatcher
      │                    │
      │                    └─ plain text ──▶ ClaudeSession.submit
      │                                        │
      │                                        ▼
      │                                  SDK query (claude-agent-sdk)
      │                                        │
      │                                        ├─ tool_use ──▶ PermissionBroker ──▶ Feishu card
      │                                        ├─ thinking ──▶ Feishu card (streaming)
      │                                        └─ text ──▶ Feishu answer card
      │
      └─ onCardAction ──▶ PermissionBroker.resolveByCard
                          QuestionBroker.resolveByCard
                          CommandDispatcher.resolveCdConfirm

Key components:

  • FeishuGateway — receives WebSocket events, verifies signatures, deduplicates, enforces access control
  • ClaudeSession — state machine (idle → generating → idle) with message queue, drives the SDK query loop
  • ClaudeSessionManagerchat_id → ClaudeSession map with persistence and crash recovery
  • FeishuPermissionBroker — posts permission cards, tracks pending approvals, handles timeouts
  • CommandDispatcher — handles slash commands (/new, /cd, /config set, etc.)

Development

# Clone and install
git clone https://github.com/Blackman99/claude-feishu-channel.git
cd claude-feishu-channel
pnpm install

# Run in dev mode
pnpm dev

# Run tests
pnpm test

# Type check
pnpm typecheck

# Build
pnpm build

Environment Variables

| Variable | Description | |----------|-------------| | CLAUDE_FEISHU_CONFIG | Override config file path (default: ~/.claude-feishu-channel/config.toml) | | ANTHROPIC_BASE_URL | Custom API endpoint for Claude SDK | | ANTHROPIC_AUTH_TOKEN | Auth token for custom endpoint |

License

MIT