teambitionweng
Analysis
This skill appears to do what it claims—create and query TeamBition tasks—but users should understand it needs TeamBition app credentials and can write tasks.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
action = params.get("action", "create_task") ... if action == "create_task": return skill.create_task(params)The skill defaults to the mutating create_task action when action is omitted. This matches the skill purpose and still requires task parameters, but users should be aware that task creation is the default path.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
TEAMBITION_APP_ID ... 是 ... TeamBition 开放平台应用 ID | TEAMBITION_APP_SECRET ... 是 ... TeamBition 开放平台应用秘钥 | TEAMBITION_ACCESS_TOKEN ... 否 ... 预配置的访问令牌
The skill requires a TeamBition app ID and app secret, with an optional access token. These credentials are expected for the stated integration, but they provide delegated access and should be protected.
