AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified BSD-3-Clause Self-run

Goga Accept Test Assessment

skill-qarium-goga-goga-accept-test-assessment · by qarium

Cell test coverage assessment for acceptance review

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-qarium-goga-goga-accept-test-assessment

✓ 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-qarium-goga-goga-accept-test-assessment)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

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 Goga Accept Test Assessment? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

goga-accept-test-assessment

Identity

You are responsible for evaluating test coverage of cells during acceptance review: code analysis, test analysis, coverage completeness and quality assessment.

Key Principle

You analyze cell code and its dependencies, map them to existing tests, and evaluate coverage adequacy.


Algorithm

Step 1. Context Loading

  1. Load the Acceptance Scope Report.
  2. For each cell listed in the Acceptance Scope Report:

a. Load its CODEMANIFEST. b. Load all implementation files. c. Load all existing test files.

Step 2. Coverage Point Identification

For each cell, identify the points that must be covered by tests.

Traverse the call stack of every public method/function and derive coverage points:

  1. Contract points — from CODEMANIFEST:
  • Signatures: parameters, return values, types
  • Guarantees: postconditions, invariants, constraints
  • Behavior: inputs → outputs for each public method/function
  1. Branch points — from code:
  • Conditional branches (if/else, switch, pattern matching)
  • Error handling (try/catch, error returns)
  1. Integration points — from code:
  • Calls to other cells via Imports
  • Side effects (I/O, state mutations, external calls)
  1. Boundary points — from code and contracts:
  • Empty and nil values
  • Edge cases (empty collections, zero values, overflows)

Output: for each cell — a list of coverage points annotated with type and source (CODEMANIFEST / code).

Step 3. Test Analysis

For each coverage point, determine whether an existing test covers it:

  1. Enumerate all existing tests following goga-lang-disp conventions (naming, structure, assertion patterns).
  2. Classify each test:
  • CONTRACT — validates contract points: signatures, types, return values, guarantees.
  • INTEGRATION — validates integration points: cross-cell calls, side effects, dependency handling.
  1. For each coverage point, determine:
  • Whether it is covered by a test.
  • Which test covers it and its classification.
  • How thoroughly the test exercises this point.

Step 4. Coverage Assessment

For each coverage point from Step 2, cross-reference against the test analysis from Step 3:

  1. Contract point — is there a contract test for it?
  2. Integration point — is there an integration test for it?
  3. Branch point / boundary point — is any test covering it?

Classify every uncovered point:

  • CRITICAL GAP — public API contract not covered by any test.
  • WARNING GAP — missing integration test for a cell with external dependencies, or uncovered boundary conditions.
  • INFO GAP — recommendation to improve existing test quality.

Step 5. Test Execution

  1. Run all tests for cells within the acceptance scope.
  2. Record the outcome of each: passed / failed / error.
  3. For every failure — diagnose the root cause.

Step 6. Test Proposals

For every CRITICAL and WARNING gap:

  1. Determine the required test type (CONTRACT / INTEGRATION).
  2. Describe what the test must verify.
  3. Specify the target test file following goga-lang-disp conventions.
  4. Offer the user a choice:
  • Auto-generate the tests.
  • Write the tests manually.
  • Accept the risk and skip tests.

STOP if:

  • CRITICAL gaps exist in public API contract coverage.
  • Any existing test fails.

Output Format

Complete every section. Empty sections are not permitted.

# Test Assessment Report

## Coverage Points
[Table: Cell | Coverage Point | Type (contract / branch / integration / boundary) | Source (CODEMANIFEST / code)]

## Existing Tests
[Table: Test Name | File | Type (CONTRACT / INTEGRATION) | What It Verifies | Status (passed / failed)]

## Coverage Assessment
[Table: Coverage Point | Covered by Test? | Test | Test Type | Coverage Completeness]

## Test Run Results
[Summary: total tests, passed, failed, errors]

## Coverage Gaps
[Table: Coverage Point | Gap Type (CRITICAL / WARNING / INFO) | Description]

## Proposed Tests
[Table: Test | Type (CONTRACT / INTEGRATION) | File | Coverage Point Addressed | Priority (CRITICAL / WARNING)]

## Overall Coverage Assessment
[EXCELLENT / ADEQUATE / INSUFFICIENT / CRITICAL_GAPS — with justification]

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.