npx claudepluginhub nanmicoder/claude-code-skills --plugin feishu-channelWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Set up the Feishu channel — save the bot credentials and check connection status. Use when the user pastes Feishu app credentials, asks to configure Feishu, or wants to check channel status.
This skill uses the workspace's default tool permissions.
Feishu Channel Configuration
This skill helps users configure their Feishu bot credentials for the Claude Code Feishu channel.
What you need
To connect Claude Code with Feishu, users need to create a Self-Built App in the Feishu Developer Console:
- Go to Feishu Open Platform → Create App → Enterprise Self-Built App
- Get the App ID and App Secret from "Credentials & Basic Info"
- Enable the bot capability: "Add Capability" → "Bot"
- Add event subscriptions (use WebSocket mode):
im.message.receive_v1— Receive messages
- Grant permissions:
im:message— Send messagesim:message:send_as_bot— Send messages as botim:resource— Access message resources (images, files)im:message.reactions:write— Add reactions
- Publish the app version
Configuration
When the user provides credentials, write them to ~/.claude/channels/feishu/.env:
FEISHU_APP_ID=<app_id>
FEISHU_APP_SECRET=<app_secret>
Optional fields:
FEISHU_ENCRYPT_KEY=<encrypt_key>
FEISHU_VERIFICATION_TOKEN=<verification_token>
FEISHU_BRAND=feishu
FEISHU_BRAND can be feishu (China, default) or lark (International).
Steps
- Create the directory if it doesn't exist:
mkdir -p ~/.claude/channels/feishu - Write the
.envfile with the credentials - Inform the user to restart Claude Code with the channel flag:
Or if using plugin-dir for local development:claude --dangerously-load-development-channels plugin:feishu-channelclaude --plugin-dir /path/to/claude-code-skills/plugins/feishu-channel --dangerously-load-development-channels plugin:feishu-channel
Status Check
To check if the Feishu channel is configured:
- Check if
~/.claude/channels/feishu/.envexists and hasFEISHU_APP_IDset - Report the configuration status to the user
Security
- NEVER log or display the App Secret
- NEVER commit credentials to git
- Store credentials only in
~/.claude/channels/feishu/.env
Similar Skills
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.