Bot that bridges Feishu/Lark messenger with a local Claude Code or Codex CLI. Streaming cards, per-chat sessions, multiple workspaces
Bot that bridges Feishu/Lark messenger with a local Claude Code or Codex CLI. Streaming cards, per-chat sessions, multiple workspaces
A lightweight bot that bridges Feishu / Lark messenger with your local Claude Code or Codex CLI. Run one command, scan a QR code to bind a PersonalAgent app, and talk to your local coding agent from chat.
For a product walkthrough, see the Feishu document.
@bot in a group./new, /cd, /ws use, and /stop can interrupt the current task./cd to switch the current project, and /ws to save and reuse common project directories./help, /ws list, and /status return cards with clickable buttons.claude, see https://docs.anthropic.com/en/docs/claude-code/quickstartcodex, see https://developers.openai.com/codex/clinpm i -g lark-channel-bridge
# or
pnpm add -g lark-channel-bridge
lark-channel-bridge run
The first run opens a QR-code wizard:
~/.lark-channel/config.json.You do not need to choose a project directory up front. The bridge creates a profile-managed default working directory; after startup, send /cd <path> in Feishu / Lark to switch to a real project.
If you already have a PersonalAgent app, pass --app-id during initialization to skip app creation. The command prompts for the App Secret.
lark-channel-bridge run --app-id cli_xxx
# or initialize and start the background service directly
lark-channel-bridge start --app-id cli_xxx
For Lark global apps, add --tenant lark.
Use run for first-run setup and foreground debugging. After the bot can send and receive messages, stop the foreground process with Ctrl-C, then use an OS-managed service for background operation:
lark-channel-bridge start
lark-channel-bridge status
lark-channel-bridge stop
Install globally before using service commands. The daemon's launchd plist / systemd unit / Windows task records the bridge CLI path; if that path comes from an npm temp cache through npx, the daemon can break when the cache is cleaned. run is fine through npx as a one-shot foreground process.
Service commands install a per-profile service:
lark-channel-bridge start [--profile <name>]
lark-channel-bridge stop [--profile <name>]
lark-channel-bridge restart [--profile <name>]
lark-channel-bridge status [--profile <name>]
lark-channel-bridge unregister [--profile <name>]
Platform mapping:
ai.lark-channel-bridge.bot.<profile>lark-channel-bridge.bot.<profile>.serviceLarkChannelBridge.Bot.<profile>, launched through a .cmd wrapperDaemon logs are under ~/.lark-channel/profiles/<profile>/logs/daemon/.
By default, the bridge starts with the currently selected profile. Use profile use <name> to change it. Each profile keeps its own app credentials, sessions, working directories, and logs. Create multiple profiles only when you need to connect multiple PersonalAgent apps, or run Claude and Codex as separate bots:
lark-channel-bridge start --profile claude --agent claude
lark-channel-bridge start --profile codex --agent codex
For example, to restart only the Codex bot:
lark-channel-bridge restart --profile codex
lark-channel-bridge status --profile codex
lark-channel-bridge run [--profile <name>] [--agent claude|codex] [--workspace <path>] [-c <config>]
lark-channel-bridge migrate [--profile <name>] [--agent claude|codex]
lark-channel-bridge ps
lark-channel-bridge kill <id|#>
lark-channel-bridge --help
profile use <name> changes the profile used by later default starts. Use these profile management commands when running separate Claude / Codex bots, connecting multiple PersonalAgent apps, or doing scripted deployment:
lark-channel-bridge profile create claude --agent claude
lark-channel-bridge profile create codex --agent codex
lark-channel-bridge profile list
lark-channel-bridge profile use <name>
lark-channel-bridge profile remove <name>
lark-channel-bridge profile remove <name> --purge --yes
lark-channel-bridge profile export <name> [--output ./profile.json] [--force]
lark-channel-bridge profile export <name> --include-secrets --yes
profile remove archives local state by default, including the active profile. If other profiles remain, the bridge switches to the next one; if it was the last profile, the root config is cleared so the same name can be created again. --purge --yes permanently deletes local state. profile export redacts app secrets by default; --include-secrets --yes includes sensitive config.
If a profile was created with the wrong agent kind, stop or unregister any matching background service first, then run profile remove <name> and recreate it with the intended --agent.
/new, /reset
Clear the current session
/cd <path>
Switch working directory and reset the session
/ws list
List named workspaces
/ws save <name>
Save the current working directory as a named workspace
/ws use <name>
Switch to a named workspace
/ws remove <name>
Delete a named workspace
/resume
Resume compatible history for the same agent, working directory, and permission mode
/status
Show profile, agent, working directory, session, lark-cli identity, and run state
/config
Adjust presentation preferences, access settings, and lark-cli identity policy
/invite user @name
Allow a user to use the bot in DMs
/invite admin @name
Add an access-control admin
/invite group
Allow the current group to use the bot
/invite all group
Allow all groups the bot has joined
/remove user @name, /remove admin @name, /remove group
Remove access entries
/stop
Stop the current run, including the card stop button
/timeout [N|off|default]
Set or clear the current session idle watchdog
/ps
List local bridge processes
/exit <id|#>
Stop a bridge process
/reconnect
Force a WebSocket reconnect
/doctor [description]
Run low-sensitive diagnostics
/help
Help card
DMs do not require an @ mention. Groups and topic groups require @bot by default; @all is ignored. Cloud-doc comments in supported document types run when the bot is mentioned.
/config controls three presentation settings:
message card streams the final reply; plain text sends once after the run finishes.off sends only the final reply; brief first sends a COT message with agent progress text and tool summaries; detailed also includes tool args and truncated output.When COT is enabled, the bridge splits the process view and final answer into two messages. The COT message is for tracing what the agent did; the final answer is still generated from the agent's raw text, without heuristic bridge-side filtering. If an agent emits final-answer text as ordinary stream text, that text can also appear in the COT process message.
Each profile uses a profile-local lark-cli directory at ~/.lark-channel/profiles/<profile>/lark-cli. The agent process receives LARKSUITE_CLI_CONFIG_DIR for that directory, so personal authorization in one profile is not shared with another profile.
The default policy is bot-only: lark-cli uses the app/bot identity and does not access personal resources. When a user authorizes personal resources such as calendar, mail, or drive, the current profile can switch to user-default, which keeps app identity available and also allows the authorized user identity. Owner/admin users can inspect or change this policy in /config; /status shows the current summary as lark-cli: app or lark-cli: user-ready.
Each profile may define a default working directory through workspaces.default. New profiles may be created with --workspace <path>; if omitted, the bridge creates a profile-managed default working directory.
This is a profile-field snippet. Do not replace the whole config.json with it; edit the matching profile's workspaces field.
{
"workspaces": {
"default": "/Users/me/.lark-channel-workspaces/claude/default"
}
}
The bridge checks that a selected directory exists, is a directory, and is not an overly broad location such as /, the home root, a system directory, or a temp root. The working directory is only the current directory for an agent run. It is not a filesystem sandbox; actual file access still depends on the local agent process and its permission mode.
The recommended user-facing profile config is permissions.defaultAccess and permissions.maxAccess. New profiles default to full for both values so the bridge can keep local tools, authorization flows, file writes, and other agent features fully usable. To tighten a profile, set one or both values to workspace or read-only; stricter modes can limit local tool execution, login/authorization flows, file writes, and similar capabilities.
This is a profile-field snippet. Do not replace the whole config.json with it; edit the matching profile's permissions field.
{
"permissions": {
"defaultAccess": "full",
"maxAccess": "full"
}
}
Mode mapping:
Bridge access Claude permission mode Codex modefull
bypassPermissions
danger-full-access
workspace
acceptEdits
workspace-write
read-only
plan
read-only
The legacy sandbox field is still readable for old configs. After the bridge saves the profile, it migrates that setting to canonical permissions.
~/.lark-channel/config.json
Root config with profiles and active profile
~/.lark-channel/active-profile
Last selected profile
~/.lark-channel/profiles/<profile>/sessions.json
Session state
~/.lark-channel/profiles/<profile>/sessions.json.catalog.json
Agent-aware session catalog
~/.lark-channel/profiles/<profile>/workspaces.json
Current and named workspace bindings
~/.lark-channel/profiles/<profile>/secrets.enc
Profile-local encrypted secrets
~/.lark-channel/profiles/<profile>/lark-cli/
Profile-local lark-cli directory
~/.lark-channel/profiles/<profile>/media/
Attachment cache
~/.lark-channel/profiles/<profile>/logs/
Structured run logs
`~/.lark-channel/registry/processes.json
No open issues yet, or sync has not completed.