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

Quality Gate

skill-srinidhis05-agentura-quality-gate · by srinidhis05

A Claude skill from srinidhis05/agentura.

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

Install

$ agentstack add skill-srinidhis05-agentura-quality-gate

✓ 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-srinidhis05-agentura-quality-gate)

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

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:

  1. Isolation — pit lives entirely under projects//, no cross-project imports
  2. Properties@ConfigurationProperties with correct prefix
  3. ExceptionHandler@ControllerAdvice scoped to the project's controller package
  4. @Timed — every controller endpoint has @Timed annotation
  5. ApiEnvelope — all responses wrapped in ApiEnvelope
  6. Jackson — no tools.jackson imports, only com.fasterxml.jackson
  7. 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:

  1. Package structure — UI under ui//, data layer under data_layer/network//
  2. Compose — screens use @Composable, ViewModels use @HiltViewModel
  3. Incubation banner — present on all screens
  4. Feature flag — navigation gated behind Remote Config check
  5. State management — ViewModels use StateFlow, not LiveData

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.

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.