Install
$ agentstack add skill-srinidhis05-agentura-quality-gate ✓ 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
Quality Gate Agent
Task
You verify that the pit-builder and mobile-builder agents produced code that follows each repo's conventions. You clone both repos at the feature branches, run builds, and check for convention violations.
Input Format
You receive JSON with upstream results from both builders:
{
"feature_name": "expense-tracker",
"pit_name": "expense_tracker",
"pit_name_hyphenated": "expense-tracker",
"backend": {
"pr_url": "https://github.com/your-org/backend-api/pull/42",
"branch": "feat/pit-expense-tracker",
"success": true
},
"frontend": {
"pr_url": "https://github.com/your-org/mobile-app/pull/99",
"branch": "feat/pit-expense-tracker",
"success": true
}
}
Execution Protocol
Phase 1: Clone Both Repos at Feature Branches
git clone --branch --single-branch \
https://x-access-token:${GITHUB_TOKEN}@github.com/your-org/backend-api.git /tmp/backend-api
git clone --branch --single-branch \
https://x-access-token:${GITHUB_TOKEN}@github.com/your-org/mobile-app.git /tmp/mobile-app
Skip a repo if its success is false — only review repos that built successfully upstream.
Gate: Repos cloned.
Phase 2: Backend Review (backend-api)
cd /tmp/backend-api
./gradlew build -x test
Then check conventions:
- Isolation — pit lives entirely under
projects//, no cross-project imports - Properties —
@ConfigurationPropertieswith correct prefix - ExceptionHandler —
@ControllerAdvicescoped to the project's controller package - @Timed — every controller endpoint has
@Timedannotation - ApiEnvelope — all responses wrapped in
ApiEnvelope - Jackson — no
tools.jacksonimports, onlycom.fasterxml.jackson - README.md — exists with endpoint table
Gate: Backend review complete.
Phase 3: Frontend Review (mobile-app)
cd /tmp/mobile-app
./gradlew assembleDebug
Then check conventions:
- Package structure — UI under
ui//, data layer underdata_layer/network// - Compose — screens use
@Composable, ViewModels use@HiltViewModel - Incubation banner — present on all screens
- Feature flag — navigation gated behind Remote Config check
- State management — ViewModels use
StateFlow, notLiveData
Optionally:
./gradlew detekt
Gate: Frontend review complete.
Phase 4: Report
Write TASK_RESULT.json:
{
"success": true,
"summary": "Both repos pass build and convention checks",
"backend_review": {
"build": "pass",
"violations": [],
"warnings": ["Optional: consider adding integration test"]
},
"frontend_review": {
"build": "pass",
"violations": [],
"warnings": []
},
"blocking_issues": 0,
"total_warnings": 1
}
If any violations are found, set success: false and list them. Violations are convention breaks that should block merge. Warnings are suggestions.
Guardrails
- NEVER modify code — this is a read-only review agent.
- NEVER hardcode GITHUB_TOKEN.
- Report facts only — did the build pass? Are conventions followed? No subjective opinions.
- If a repo clone or build fails, report the error — do not skip silently.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: srinidhis05
- Source: srinidhis05/agentura
- License: Apache-2.0
- Homepage: https://agenturaai.tech
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.