Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/GoogleCloudPlatform/cxas-scrapinpx agentmods add skills/googlecloudplatform/cxas-scrapi/cxas-agent-foundryWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/googlecloudplatform/cxas-scrapi/cxas-agent-foundry)<a href="https://agentmods.dev/skills/googlecloudplatform/cxas-scrapi/cxas-agent-foundry"><img src="https://agentmods.dev/badge/skills/googlecloudplatform/cxas-scrapi/cxas-agent-foundry.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 14 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00112 | $0.02306 |
| Opus 5 | $0.00056 | $0.01153 |
| Sonnet 5 | $0.00022 | $0.00461 |
| Haiku 4.5 | $0.00011 | $0.00231 |
Grade A, and why
cxas-agent-foundry scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Foundry
End-to-end lifecycle for GECX conversational agents: build, test, debug, iterate.
Step tracking — MANDATORY (Phase 0, blocking)
Before doing ANY work — including running setup, asking questions, or scaffolding files — initialize <project>/todo.md from the relevant sub-skill's checklist (verbatim). The checklist is a contract, not a suggestion. If todo.md doesn't exist for the current task, refuse to proceed and create it first.
Long debug/build runs skip verification steps under pressure (e.g., pushing without linting, scaffolding without a TDD, claiming "deployed" without actually pushing). The checklist exists because of this. The instinct to skip a step is the moment the checklist earns its keep — that's when you must consult it, not the moment to bypass it.
Quick Reference
# Lint: dispatch agents/lint-fixer.md sub-agent — DO NOT run `cxas lint` on the main thread.
# Lint output is verbose; keep it inside the sub-agent context.
# Push local files to platform (only after lint-fixer returns status: clean)
cxas push --app-dir <project>/cxas_app/<AppName> \
--to projects/<project_id>/locations/<location>/apps/<app_id> \
--project-id <project_id> --location <location>
# Pull platform state to local
cxas pull projects/<project_id>/locations/<location>/apps/<app_id> \
--project-id <project_id> --location <location> --target-dir <project>/cxas_app/
# Run evals + triage + report (single command)
python .agents/skills/cxas-agent-foundry/scripts/run-and-report.py --message "what changed" --runs 5
# Generate dynamic interactive HTML dashboard with Gemini LLM failure clustering and parameter filters
python .agents/skills/cxas-agent-foundry/scripts/generate_interactive_report.py --input <path_to_sim_results.json> --output <path_to_report.html>
# Inspect app architecture
python .agents/skills/cxas-agent-foundry/scripts/inspect-app.py
# Triage failures
python .agents/skills/cxas-agent-foundry/scripts/triage-results.py --last 3
# Run all 6 build-verification gates against the deployed app
python .agents/skills/cxas-agent-foundry/scripts/gate-check.py
# Tune scoring thresholds (similarity, hallucination, extra-tools)
python .agents/skills/cxas-agent-foundry/scripts/app-thresholds.py show
# Sync callback Python code into evals/callback_tests/agents/ + create test.py symlinks.
# Required for tests to be discoverable by test_all_callbacks_in_app_dir.
python .agents/skills/cxas-agent-foundry/scripts/sync-callbacks.py # post-push: pull from platform
python .agents/skills/cxas-agent-foundry/scripts/sync-callbacks.py --from-local <app_dir> # pre-push: copy from local app dir
# Snapshot app version (create immutable platform backup)
cxas versions create --app-name projects/<project_id>/locations/<location>/apps/<app_id> \
--display-name "v1.0.0-snapshot" --description "Pre-refactor baseline"
# List and compare app versions
cxas versions list --app-name projects/<project_id>/locations/<location>/apps/<app_id>
cxas versions compare --app-name projects/<project_id>/locations/<location>/apps/<app_id> \
--source <version_id_1> --target <version_id_2> --web
# Cold-start setup (first-time only — venv + project bootstrap)
.agents/skills/cxas-agent-foundry/scripts/setup.sh
python .agents/skills/cxas-agent-foundry/scripts/setup-project.py
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/coverage-analyst.md 3.8 KB
- agents/eval-writer.md 21 KB
- agents/lint-fixer.md 10 KB
- agents/scaffolder.md 10 KB
- agents/tdd-writer.md 18 KB
- agents/triage-failure.md 29 KB
- assets/project-template/cxas_app/Sample_Support_Agent/agents/root_agent/after_model_callbacks/after_model_callbacks_01/python_code.py 5.2 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/agents/root_agent/before_agent_callbacks/before_agent_callbacks_01/python_code.py 5.5 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/agents/root_agent/before_model_callbacks/before_model_callbacks_01/python_code.py 11 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/agents/root_agent/instruction.txt 8.7 KB
- assets/project-template/cxas_app/Sample_Support_Agent/agents/root_agent/root_agent.json 1.3 KB
- assets/project-template/cxas_app/Sample_Support_Agent/agents/troubleshoot_agent/before_model_callbacks/before_model_callbacks_01/python_code.py 3.6 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/agents/troubleshoot_agent/instruction.txt 6.0 KB
- assets/project-template/cxas_app/Sample_Support_Agent/agents/troubleshoot_agent/troubleshoot_agent.json 1.3 KB
- assets/project-template/cxas_app/Sample_Support_Agent/app.json 5.5 KB
- assets/project-template/cxas_app/Sample_Support_Agent/tools/lookup_account/lookup_account.json 1.2 KB
- assets/project-template/cxas_app/Sample_Support_Agent/tools/lookup_account/python_function/python_code.py 4.1 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/tools/payload_update_tool/payload_update_tool.json 993 B
- assets/project-template/cxas_app/Sample_Support_Agent/tools/payload_update_tool/python_function/python_code.py 2.7 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/tools/set_session_state/python_function/python_code.py 2.7 KB runs code
- assets/project-template/cxas_app/Sample_Support_Agent/tools/set_session_state/set_session_state.json 1019 B
- assets/project-template/evals/callback_tests/agents/root_agent/before_model_callbacks/before_model/python_code.py 11 KB runs code
- assets/project-template/evals/callback_tests/tests/root_agent/before_model_callbacks/before_model/test.py 12 KB runs code
- assets/project-template/evals/goldens/example_auth_routing.yaml 3.9 KB
- assets/project-template/evals/goldens/example_escalation.yaml 2.9 KB
- assets/project-template/evals/simulations/example_simulations.yaml 5.6 KB
- assets/project-template/evals/tool_tests/example_tool_tests.yaml 2.7 KB
- assets/project-template/gecx-config.json 1.4 KB
- assets/project-template/README.md 4.7 KB
- assets/project-template/tdd.md 4.0 KB
- references/api-reference.md 19 KB
- references/api-schemas/agents.md 1.7 KB
- references/api-schemas/apps.md 1.6 KB
- references/api-schemas/evaluations.md 8.6 KB
- references/api-schemas/sessions.md 2.2 KB
- references/api-schemas/tools.md 3.8 KB
- references/build-verification.md 4.9 KB
- references/build.md 8.8 KB
- references/callback-api.md 4.9 KB
- references/debug.md 22 KB
- references/eval-templates.md 25 KB
- references/gecx-design-guide.md 56 KB
- references/generating-reports.md 13 KB
- references/interview-guide.md 4.3 KB
- references/run.md 6.2 KB
- references/setup.md 3.2 KB
- references/tdd-guide.md 7.2 KB
- scripts/app-thresholds.py 8.6 KB runs code
- scripts/bootstrap-evals.py 16 KB runs code
- scripts/calculate_coverage.py 17 KB runs code
- scripts/capture-golden-transcripts.py 8.4 KB runs code
- scripts/config.py 5.9 KB runs code
- scripts/configure.py 25 KB runs code
- scripts/coverage_report_template.html 38 KB
- scripts/gate-check.py 21 KB runs code
- scripts/generate_interactive_report.py 29 KB runs code
- scripts/generate-iteration-report.py 58 KB runs code
- scripts/hooks/post-agent-update.sh 2.6 KB runs code
- scripts/hooks/pre-agent-push-lint.sh 2.6 KB runs code
- scripts/hooks/pre-agent-push.sh 3.8 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago Changed · +10 lines 0363b9835dcc
- 8d ago First seen · 123 lines · 112 tokens per session scan A 6326a19b10b1
cxas-agent-foundry is a skill published in the GitHub repository GoogleCloudPlatform/cxas-scrapi (95 stars, last pushed today), licensed Apache-2.0. It adds 112 tokens to every session and 2,306 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
research-engineer
An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.
tika-eval-compare
Compare extracts from two Tika builds over a corpus to detect regressions in content, encoding, exceptions, and embedded-document handling. Use for "compare before/after extracts", "eval this change against the corpus".
neuron-evaluation-engineer
Create and run AI evaluations with datasets, assertions, and output drivers in Neuron AI. Use this skill whenever the user mentions evaluation, testing AI systems, creating evaluators, dataset-driven testing, assertion-based validation, or wants to measure AI system performance. Also trigger for tasks involving…
jetson-validate-image
Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.
atmos-validation
Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.
skill-benchmark
Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.