Console Agent

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a coherent Gemini-backed AI-agent integration guide, but it needs Review because the docs are inconsistent about whether external tools run only by opt-in while encouraging background analysis of runtime/source data.

Install only if you intend to add a Gemini-backed agent to your code. Before using it, verify the external package, pin versions, use a dedicated API key with budgets, explicitly configure allowed tools, and avoid passing secrets or sensitive production data unless you have confirmed the privacy and tool-execution behavior.

Findings (5)

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

A user may add console.agent calls believing external tools are disabled, while persona shortcuts or defaults could enable web search, hosted code execution, or file-analysis behavior.

Why it was flagged

The documentation simultaneously says persona tools are defaults and that tools are never activated unless explicitly passed, making the true tool-activation boundary unclear.

Skill content
Security Persona ... Default tools: `google_search` ... Debugger Persona ... Default tools: `code_execution`, `google_search` ... CRITICAL: Tools are opt-in. They are NOT activated by default.
Recommendation

Verify actual package behavior before use; explicitly set allowed tools per call, disable unused tools, and document whether persona shortcuts ever enable tools automatically.

What this means

The API key may grant model access, consume quota, or incur cost if embedded into applications that call console.agent frequently.

Why it was flagged

The skill requires a Google Gemini API credential for normal operation, while the registry metadata declares no required credentials.

Skill content
export GEMINI_API_KEY="your-key-here"
Recommendation

Use a restricted or dedicated API key where possible, keep it out of source control, set budget limits, and rotate it if exposed.

What this means

Installing the packages will run code that was not present in this review, so package provenance and updates matter.

Why it was flagged

The runnable implementation comes from external package registries rather than code included in the reviewed skill artifacts.

Skill content
npm install @console-agent/agent ... pip install console-agent
Recommendation

Review the package source and publisher, pin versions, use lockfiles, and install only from trusted registries.

What this means

Runtime data, source snippets, or selected files may be sent to an external AI provider if the user enables or copies these patterns.

Why it was flagged

The skill is built around sending prompts/context to a Gemini-backed agent and documents an option to include caller source code.

Skill content
Provider: Google Gemini ... includeCallerSource: true,    // Auto-read source file
Recommendation

Avoid passing secrets or regulated data, confirm provider data-handling policies, use anonymization, and turn off source/file context unless needed.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

Agent calls may continue after application code proceeds, which can affect observability, cost, and sensitive-data handling if used in production paths.

Why it was flagged

The docs disclose background asynchronous agent activity after a console.agent call.

Skill content
Fire-and-forget is the default mode. The call returns immediately and the agent runs asynchronously in the background.
Recommendation

Use awaited/blocking mode for control-sensitive workflows, set timeouts and budgets, and avoid fire-and-forget calls around sensitive production data unless intentional.