Install
$ agentstack add skill-googlecloudplatform-cxas-scrapi-task-coverage-protocol ✓ 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
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:
- The Ingestor Supervisor scans the directory, partitions the files, and
outputs a structured batch directive.
- You (or parallel subagents) consume this directive, process only the
assigned slice of files, and write the output files to the designated folder.
- 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:
- Read the spec file
/tmp/ingestor/batch_spec.jsonto retrieve the list of
files, prompts, and expected output paths.
- Spawn fresh, parallel subagents (one per file or partition) using their
respective prompt files (e.g., /tmp/ingestor/prompts/_prompt.txt).
- 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.
- Author: GoogleCloudPlatform
- Source: GoogleCloudPlatform/cxas-scrapi
- License: Apache-2.0
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.