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

Task Coverage Protocol

skill-googlecloudplatform-cxas-scrapi-task-coverage-protocol · by GoogleCloudPlatform

Enforces 100% task and file ingestion coverage via an asynchronous, supervisor-driven state polling mechanism.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-googlecloudplatform-cxas-scrapi-task-coverage-protocol

✓ 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-googlecloudplatform-cxas-scrapi-task-coverage-protocol)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Task Coverage Protocol? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

PROTOCOL: Supervisor-Driven Task Coverage Checklist

This protocol governs how you must handle large, repetitive, or multi-step requirements ingestion tasks to prevent context drift, avoid memory exhaustion, and guarantee 100% file coverage. Workloads are partitioned into sliced batches dynamically monitored by a decoupled supervisor.

Architectural Overview

Instead of attempting to list and process hundreds of files in a single conversation turn, tasks are executed asynchronously:

  1. The Ingestor Supervisor scans the directory, partitions the files, and

outputs a structured batch directive.

  1. You (or parallel subagents) consume this directive, process only the

assigned slice of files, and write the output files to the designated folder.

  1. The supervisor verifies and grades the outputs before queueing the next

slice.

--------------------------------------------------------------------------------

Execution Workflow

1. Scoped Scan & Scoping Setup

When instructed to ingest a requirements directory (e.g. "Ingest and parse all files in this folder"), you MUST launch the Supervisor script to initialize the task state:

python3 protocols/task-coverage-protocol/scripts/ingestor_supervisor.py \
  --source_dir="path/to/source" \
  --target_skill="path/to/cxas-cuj-report-generator/"

2. Consume the Handoff Directive

The supervisor will scan the target folder, slice the files into batch lists of size 10, and print a structured directive to standard output: SPAWN_BATCH_DIRECTIVE: {"spec_file": "/tmp/ingestor/batch_spec.json", "output_dir": "/tmp/ingestor/outputs/"}

Upon seeing this token, you MUST:

  1. Read the spec file /tmp/ingestor/batch_spec.json to retrieve the list of

files, prompts, and expected output paths.

  1. Spawn fresh, parallel subagents (one per file or partition) using their

respective prompt files (e.g., /tmp/ingestor/prompts/_prompt.txt).

  1. Instruct the subagents to write their generated YAML transcripts directly to

/tmp/ingestor/outputs/_output.txt.

3. Yield Terminal & Polling Gate

Once parallel subagents have been spawned in the background, you MUST immediately stop calling tools and go idle (or report status) to release the terminal lock. The supervisor will poll the output directory until all files are completed.

4. Progress Verification & Next Slices

When all subagents have delivered their YAML transcripts, run the supervisor script again:

python3 protocols/task-coverage-protocol/scripts/ingestor_supervisor.py \
  --source_dir="path/to/source" \
  --target_skill="path/to/cxas-cuj-report-generator/"
  • Verification Pass: If the supervisor grades all outputs as passing, it

automatically advances the file pointer and writes the next batch spec. Consume the new directive and repeat the parallel spawning cycle!

  • Verification Fail: If the supervisor detects any syntax, schema, or

linguistic violations, it automatically triggers recovery, rebasing, or load bisection. Re-spawn the corrective subagents as directed.

5. Final Compilation & Completion

When all batch slices are fully processed, the supervisor will declare All files successfully ingested! and compile the final interactive CUJ reports.

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.