AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Deepdone Verify

skill-lakesoftai-deepdone-agent-skills-deepdone-verify · by lakesoftai

Verify changes with smallest relevant checks first, widen only when shared impact requires it, and log exact commands and outcomes. Use before claiming a milestone or task is done.

— No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-lakesoftai-deepdone-agent-skills-deepdone-verify

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-lakesoftai-deepdone-agent-skills-deepdone-verify)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Deepdone Verify? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

DeepDone Verify

Purpose

Make verification deterministic and scoped.

Verification Order

Start narrow. Widen only when impact demands it.

Typical order:

  1. focused unit or smoke check nearest change
  2. package or app lint
  3. package or app typecheck
  4. affected test suite
  5. broader integration or full gate if shared code changed

If repo exposes shared wrappers, prefer just . If not, use repo's real package-level commands.

Command Discovery

Before guessing commands, inspect repo affordances in this order:

  1. justfile or .justfile: prefer named project wrappers.
  2. Makefile: use focused targets like test, lint, check, or package-specific targets.
  3. package.json: read scripts; prefer focused package scripts before broad test.
  4. pyproject.toml: inspect tool config and project layout; prefer uv run, pytest, ruff, mypy, or repo wrappers already documented.
  5. Cargo.toml: prefer cargo test, cargo check, or package-specific variants.
  6. go.mod: prefer go test ./... only when package-level test is not obvious.
  7. Existing CI config or README commands if no local wrapper is found.

Record discovery when it affects command choice:

- command: discovery
  result: pass
  notes: found `justfile`; using `just test-auth` before broader checks

If discovery finds no runnable command, log a blocked entry with exact reason.

Mandatory Notes

Record exact command and result. If something could not run, state exact blocker. Do not claim pass based on intent.

Ledger Writeback

Append lines under ## Verification Log such as:

- command: `just test api-auth`
  result: pass
  notes: focused auth test passed
- command: `uv run pytest tests/test_auth.py`
  result: fail
  notes: login fixture broken after schema change
- command: `just lint`
  result: blocked
  notes: no `justfile` in repo

result: is required. Use only pass, fail, or blocked.

Risk Triggers

Broaden verification when change touches:

  • shared libs
  • auth or permissions
  • schema or migrations
  • external APIs
  • config or deployment-sensitive paths
  • user-visible flows

Workflow

  1. Discover command wrappers and package-level checks.
  2. Identify smallest convincing check.
  3. Run it.
  4. Decide whether broader checks are needed.
  5. Run broader checks only where justified.
  6. Log every command and outcome with result:.
  7. State residual risk if coverage still incomplete.

Output

Return:

  • checks run
  • pass, fail, or blocked status
  • residual risk

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.