Skip to content
← Registry
Trust Report

lark-integration

Connect Lark (Feishu) messaging to OpenClaw via webhook bridge. Supports text, rich text (post), and image messages bidirectionally. Use when setting up Lark/Feishu as a messaging channel, receiving messages with images, sending replies back to Lark, reading Lark documents/wikis/bitables, or troubleshooting Lark integration issues. Covers both Lark International (larksuite.com) and China Feishu (feishu.cn).

82
CONDITIONAL
Format: openclawScanner: v0.8.0Duration: 9msScanned: 8d ago · May 2, 12:38 PMSource →
Embed this badge
AgentVerus CONDITIONAL 82AgentVerus CONDITIONAL 82AgentVerus CONDITIONAL 82
[![AgentVerus](https://agentverus.ai/api/v1/skill/0bc25d26-356c-43fc-a123-94736de5e682/badge)](https://agentverus.ai/skill/0bc25d26-356c-43fc-a123-94736de5e682)
Community Discussion

Community Comments

Public comments are the active feedback surface on skill reports right now. Use them to share implementation notes, edge cases, and operator context.

0 comments

Sign in to comment on this skill

No comments yet. Be the first to share your thoughts.

Continue the workflow

Keep this report moving through the activation path: rescan from the submit flow, capture real-world interactions, and wire the trust endpoint into your automation.

https://agentverus.ai/api/v1/skill/0bc25d26-356c-43fc-a123-94736de5e682/trust
Personalized next commands

Use these current-skill command blocks to keep this exact report moving through your workflow.

Record an interaction
curl -X POST https://agentverus.ai/api/v1/interactions \
  -H "Authorization: Bearer at_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"agentPlatform":"openclaw","skillId":"0bc25d26-356c-43fc-a123-94736de5e682","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/0bc25d26-356c-43fc-a123-94736de5e682/trust

Category Scores

80
Permissions
92
Injection
53
Dependencies
88
Behavioral
70
Content
100
Code Safety

Findings (14)

mediumCapability contract mismatch: inferred file read is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: references/

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred network access is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: https://open.larksuite.com

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-04
mediumCapability contract mismatch: inferred documentation ingestion is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: references/

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCredential access detected (inside code block)-8

Found credential access pattern: "echo "FEISHU_APP_ID=cli_xxx" >> ~/.openclaw/workspace/.env"

echo "FEISHU_APP_ID=cli_xxx" >> ~/.openclaw/workspace/.env

Remove references to credentials and secrets. Skills should never access sensitive authentication data.

injectionASST-05
mediumSystem modification detected (inside code block)-6

Found system modification pattern: "systemctl restart"

systemctl restart lark-bridge

Skills should not modify system configuration or install packages globally. Bundle required dependencies.

behavioralASST-03
mediumSystem modification detected (inside code block)-6

Found system modification pattern: "/etc/systemd/system"

# Creates /etc/systemd/system/lark-bridge.service

Skills should not modify system configuration or install packages globally. Bundle required dependencies.

behavioralASST-03
mediumMany external URLs referenced (8)-8

The skill references 8 external URLs and also discusses auth/API/payment workflows, which increases the chance that sensitive operations depend on many remote endpoints.

URLs: https://open.larksuite.com, http://YOUR_SERVER_IP:3000/webhook, https://open.larksuite.com`, https://open.feishu.cn`, https://xxx.larksuite.com/docx/TOKEN...

Minimize external dependencies to reduce supply chain risk.

dependenciesASST-04
mediumUnknown external reference-8

The skill references an unknown external domain which is classified as medium risk. Merged overlapping signals from the repeated finding family: - Unknown external reference

https://open.larksuite.com/

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

https://open.larksuite.com

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

http://YOUR_SERVER_IP:3000/webhook

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

https://open.larksuite.com`

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference

The skill references an unknown external domain which is classified as low risk.

https://open.feishu.cn`

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowUnknown external reference

The skill references an unknown external domain which is classified as low risk.

http://YOUR_IP:3000/health`

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
lowNo explicit safety boundaries-10

The skill does not include explicit safety boundaries defining what it should NOT do.

No safety boundary patterns found

Add a 'Safety Boundaries' section listing what the skill must NOT do (e.g., no file deletion, no network access beyond needed APIs).

contentASST-09