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

Implement Gitlab Issue

skill-bambam955-skills-implement-gitlab-issue · by bambam955

Implement a GitLab issue end to end. Use when Codex is asked to take a GitLab issue, issue URL, or issue number, read the issue and comments, gather repository context, make the code change, run validation, review the diff, and create a merge request.

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

Install

$ agentstack add skill-bambam955-skills-implement-gitlab-issue

✓ 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-bambam955-skills-implement-gitlab-issue)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
26d 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 Implement Gitlab Issue? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Implement GitLab Issue

Turn a GitLab issue into a reviewed merge request. Start from the issue, build only the context needed to implement it, validate the change, review your own diff critically, and open the MR only when the branch is in a defensible state.

Invocation

  • Treat a bare number after the skill name as the GitLab issue number in the current repository.
  • Example: $implement-gitlab-issue 56 means to implement issue 56.

Workflow

1. Read the issue

  • Fetch the issue title, description, comments, labels, and linked references with glab issue view.
  • Extract acceptance criteria, constraints, rollout notes, and ambiguity that could change implementation.
  • If the issue is thin, inspect linked code, merge requests, or nearby docs before asking the user.

2. Build context

  • Check the working tree first with git status --short; do not overwrite unrelated local changes.
  • Use rg to find the relevant code paths, tests, feature flags, config, and recent history.
  • Read the smallest set of files that explains the current behavior and the expected change.
  • Ask the user only when a product decision or acceptance criterion cannot be inferred from the issue or code.

3. Prepare the branch

  • Stay on the current branch if it is already the intended feature branch.
  • Otherwise create a branch named -, matching GitLab's default issue branch convention.
  • Keep the branch scoped to the issue. Avoid opportunistic cleanup unless it is required for the fix.

4. Implement

  • Make the code changes directly unless the user explicitly asked for design or planning first.
  • Match the repository's conventions for architecture, naming, formatting, tests, and commit messages.
  • Add or update tests when behavior changes. If test coverage is not practical, record why.
  • Work carefully in dirty trees and preserve existing user changes.

5. Validate

  • Run the narrowest useful checks first, then broaden only as needed.
  • Prefer repository-native test, lint, and build commands.
  • Fix failures, flaky assumptions, and generated diffs before moving on.
  • If a required validation step cannot run, capture the exact reason and resulting risk.

6. Review your own diff

  • Read the diff as a reviewer, not the author.
  • Check for correctness, regressions, missing tests, edge cases, naming problems, and accidental scope growth.
  • Tighten the code, tests, or docs before opening the MR.
  • Confirm git status is clean except for intentional changes.

7. Commit, push, and open the MR

  • Create logical commits with Conventional Commit messages.
  • Push the branch and create the merge request with glab mr create.
  • Write an MR title and description that reference the issue and always include:

## Summary ## Testing

  • The testing steps should be in checklist form so that reviewers can make clear to an author what worked and didn't work for them.
  • If the repo contains MR templates, select the one that fits the code you've added. ALWAYS PREFER TEMPLATES OVER CUSTOM STRUCTURE.
  • Create a draft MR instead of a ready MR when validation is incomplete or open questions remain.

Operating Rules

  • Prefer glab for issue and merge request operations.
  • Prefer rg for repository search and gather only the context needed for the task.
  • Always use Conventional Commit messages for commits created during this workflow.
  • Never overwrite unrelated local changes or revert work you did not make.
  • Never open a ready MR with known failing validation unless the user explicitly wants a draft for early feedback.
  • Surface blockers early when credentials, permissions, CI failures, or missing product decisions prevent completion.

Merge Request Checklist

  • The implementation matches the issue's acceptance criteria.
  • The diff is scoped, readable, and limited to intentional changes.
  • Validation covers the changed behavior well enough for the repository.
  • The branch name follows -.
  • Every commit uses Conventional Commits.
  • The branch is pushed and the MR description includes ## Summary and ## Testing, or follows the MR template in the repo.

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.