Install
$ agentstack add skill-giang6283623-minimal-vibe-coding-kit-agentshield-security-review ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AgentShield Security Review
Use this skill to run an AgentShield-style review for Claude Code, Cursor, Codex, OpenCode, Grok, and Kimi repositories. Treat the repo root as the source of truth, then inspect agent surfaces before normal code review.
Core rule
Do not invent findings. Prefer deterministic scanner output when available, then add reviewer judgment separately. Clearly label each finding as scanner-backed, manual-confirmed, or manual-suspected.
Standard workflow
- Identify the repo root and active harness surfaces.
- Run
node .vibekit/scripts/agentshield-probe.mjs .to inventory active provider surfaces, shared skills, hooks, MCP, commands, and repo instruction files. - Check whether the scanner is already installed locally:
``bash npm ls ecc-agentshield --depth=0 --ignore-scripts `` If it is unavailable, use the fallback manual review by default. Fetching and executing a package is a separate trust decision; request approval before using the exact reviewed version.
- With a local install or explicit approval, run the version-pinned scanner from the repo root:
``bash npx ecc-agentshield@1.4.0 scan --path . --format text ``
- If JSON is needed for CI or automation, run:
``bash npx ecc-agentshield@1.4.0 scan --path . --format json ``
- If safe auto-fixes are requested, first summarize the proposed edits, then run:
``bash npx ecc-agentshield@1.4.0 scan --path . --fix ``
- Re-run the scan after fixes and report before/after score, severity counts, and changed files.
- If AgentShield is unavailable or package execution is not approved, perform the fallback
manual review in references/review-checklist.md.
Harness-native layout
Use a shared root skill where possible:
.vibekit/skills/agentshield-security-review/SKILL.mdis the canonical workflow.- Claude Code may add a slash-command shim in
.vibekit/commands/security-scan.mdor.claude/commands/security-scan.md. - Codex and OpenCode consume the shared
.agents/skills/registry. Codex may additionally use.codex-plugin/plugin.json; OpenCode uses.opencode/commands/and its rootopencode.jsonpermissions. - Do not duplicate divergent Claude, Codex, and OpenCode skill bodies. Duplication causes drift.
See references/native-install.md for copy-ready Claude, Codex, and OpenCode snippets.
What to inspect
Prioritize runtime-active files over examples and docs:
CLAUDE.md,AGENTS.md,.github/copilot-instructions.md.claude/settings.json,.claude/settings.local.json,.claude/agents/*.md,.claude/commands/*.md.cursor/settings.json,.cursor/cli.json,.cursor/rules/,.cursor/commands/.codex/config.toml,.codex/,.codex-plugin/plugin.json.opencode/,opencode.json.grok/,.kimi-code/.agents/,agents/,.vibekit/skills/,.vibekit/commands/,.vibekit/scripts/,hooks/.mcp.json,mcp.json,mcp-configs/*.json- installer scripts, CI workflows, package scripts, and generated plugin manifests
Output contract
Return a concise report with:
- Security grade/score if AgentShield provides one.
- Commands run and whether the scan was
npx, local, CI, or fallback-manual. - Active harness surfaces found.
- Critical/high findings with exact paths, severity, confidence, exploit impact, and fix.
- Medium/low findings grouped separately.
- Safe auto-fix candidates versus manual-only changes.
- Provider-native installation notes when the repo lacks a configured surface.
- Final remediation order.
Use references/report-template.md for the preferred report format.
Safety constraints
- Never print full secrets. Show only the file path and key name or a redacted prefix/suffix.
- Do not run untrusted hook scripts, MCP server commands, package scripts, or installer scripts just to inspect them.
- Do not replace the pinned
ecc-agentshield@1.4.0command with an unpinnednpxinvocation. - Do not apply
--fixwithout first stating the planned edit types. - Treat wildcard shell permissions, unpinned
npx, shell-running MCP servers, prompt-injection instructions, and silent hook failures as high-risk until proven otherwise.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: giang6283623
- Source: giang6283623/minimal-vibe-coding-kit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.