Evez Github Manager

AdvisoryAudited by Static analysis on May 12, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

If an agent follows these instructions with a powerful GitHub token or integration, it could make repository changes such as merges, closures, releases, or branch deletion without enough built-in guardrails.

Why it was flagged

These are high-impact GitHub operations that can change public/project state or affect multiple repositories, but the skill does not define confirmation requirements, scope limits, rollback behavior, or safe defaults.

Skill content
- **PR Management**: List, review, merge, comment on PRs
- **Issue Triage**: List, label, assign, close issues
- **Branch Management**: List, create, delete branches
- **Release Coordination**: Create releases, upload assets
- **Multi-Repo Sync**: Apply changes across multiple repos
Recommendation

Require explicit user approval for every write/delete/release action, document allowed repositories and token scopes, and add dry-run or preview steps for multi-repo operations.

What this means

Using an over-privileged token could let the skill perform broader repository actions than intended.

Why it was flagged

A GitHub token or delegated integration is expected for a GitHub manager, but the registry metadata lists no required env vars or primary credential and the artifacts do not state minimal GitHub permission scopes.

Skill content
Requires `GITHUB_TOKEN` env var. Get one at https://github.com/settings/tokens

Or use Composio integration (already configured).
Recommendation

Use a least-privilege GitHub token, preferably limited to specific repositories and only the permissions needed for the task.

What this means

The script may fail until dependencies are installed manually, and users may need to decide where to obtain them.

Why it was flagged

The CLI imports the external Python package `click`, but the install specs declare no package requirements, so the runtime dependency is under-documented.

Skill content
if __name__ == "__main__":
    import click
Recommendation

Document Python/package requirements and pin or otherwise specify trusted dependency sources.