coding-workflow — for Claude Code coding-workflow, community, for Claude Code, ide skills, gh repo clone, gh repo fork --remote=true, origin, upstream, git push -u origin <branch-name>, master

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need do not use unauthenticated git clone https://github.com/... — use gh repo clone instead. Resumen localizado: The shared brain for multi-agent AI teams — decision tracking, context compilation, and change propagation # Coding Workflow GitHub CLI (gh) Always use the gh CLI for all GitHub operations. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

Do NOT use unauthenticated git clone https://github.com/... — use gh repo clone instead.
When you don't have write access to a repository (push fails with 403/permission denied):
Fork it: gh repo fork --remote=true (this adds your fork as the origin remote and renames the
Push your branch to the fork: git push -u origin <branch-name
Open a PR from your fork to the upstream repo: gh pr create --repo <upstream-owner /<repo

# Core Topics

perlantir perlantir
[0]
[0]
Updated: 4/9/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
43
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need do not use unauthenticated git clone https://github.com/... — use gh repo clone instead. Resumen localizado: The shared brain for multi-agent AI teams — decision tracking, context compilation, and change propagation # Coding Workflow GitHub CLI (gh) Always use the gh CLI for all GitHub operations. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: coding-workflow helps agents do not use unauthenticated git clone https://github.com/... — use gh repo clone instead. The shared brain for multi-agent AI teams — decision tracking, context compilation

Mejor para

Escenario recomendado: Ideal for AI agents that need do not use unauthenticated git clone https://github.com/... — use gh repo clone instead.

Casos de uso accionables for coding-workflow

Caso de uso: Applying Do NOT use unauthenticated git clone https://github.com/... — use gh repo clone instead
Caso de uso: Applying When you don't have write access to a repository (push fails with 403/permission denied):
Caso de uso: Applying Fork it: gh repo fork --remote=true (this adds your fork as the origin remote and renames the

! Seguridad y limitaciones

  • Limitacion: Do NOT use unauthenticated git clone https://github.com/... — use gh repo clone instead.
  • Limitacion: When you don't have write access to a repository (push fails with 403/permission denied):
  • Limitacion: Do NOT merge — open as draft and wait for review

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is coding-workflow?

Escenario recomendado: Ideal for AI agents that need do not use unauthenticated git clone https://github.com/... — use gh repo clone instead. Resumen localizado: The shared brain for multi-agent AI teams — decision tracking, context compilation, and change propagation # Coding Workflow GitHub CLI (gh) Always use the gh CLI for all GitHub operations. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install coding-workflow?

Run the command: npx killer-skills add perlantir/Hipp0/coding-workflow. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for coding-workflow?

Key use cases include: Caso de uso: Applying Do NOT use unauthenticated git clone https://github.com/... — use gh repo clone instead, Caso de uso: Applying When you don't have write access to a repository (push fails with 403/permission denied):, Caso de uso: Applying Fork it: gh repo fork --remote=true (this adds your fork as the origin remote and renames the.

Which IDEs are compatible with coding-workflow?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for coding-workflow?

Limitacion: Do NOT use unauthenticated git clone https://github.com/... — use gh repo clone instead.. Limitacion: When you don't have write access to a repository (push fails with 403/permission denied):. Limitacion: Do NOT merge — open as draft and wait for review.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add perlantir/Hipp0/coding-workflow. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use coding-workflow immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

coding-workflow

Install coding-workflow, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Coding Workflow

GitHub CLI (gh)

Always use the gh CLI for all GitHub operations. Both gh and git are authenticated automatically through the agent proxy.

Use gh for: cloning repos, discovering repos across orgs, creating/viewing/editing PRs, checking PR status, and viewing PR comments.

Do NOT use unauthenticated git clone https://github.com/... — use gh repo clone instead.

Forking Workflow

When you don't have write access to a repository (push fails with 403/permission denied):

  1. Fork it: gh repo fork --remote=true (this adds your fork as the origin remote and renames the original to upstream)
  2. Push your branch to the fork: git push -u origin <branch-name>
  3. Open a PR from your fork to the upstream repo: gh pr create --repo <upstream-owner>/<repo>

To avoid wasted time, check write access early. If the repo belongs to an organization you're unlikely to have push access to, fork before starting work.

Git Workflow

  • Always start by pulling the latest default branch (main or master)
  • Create a feature branch for every task
  • Branch names: short, lowercase, hyphenated (e.g., fix-login-redirect, add-csv-export)
  • NEVER push directly to the default branch

Commits

  • Commit early and often — each commit is a single logical change
  • Concise imperative messages: fix redirect loop on login, add CSV export endpoint
  • No filler, no AI attribution
  • Squash fixup commits before opening a PR

Pull Requests

  • Open PRs as drafts
  • PR title: short, imperative, under 70 characters
  • PR description: write professional PR descriptions that clearly explain the changes — brief summary of what changed and why, plus a test plan
  • When iterating on an existing PR, use gh to get the branch name, check it out, push changes, and update the PR description
  • Do NOT merge — open as draft and wait for review
  • At the bottom of each PR description, include:

## Code Quality

- Run tests before pushing. Fix failures before opening a PR.
- Add tests for new functionality and bug fixes. If the repo has a test suite, follow its patterns.
- Run the project's linter and fix any issues. Check CLAUDE.md/AGENTS.md for specific lint/test commands.
- Do not leave debugging code, commented-out blocks, or TODOs.
- Follow the repo's existing patterns for code style, naming conventions, and file organization.

Habilidades relacionadas

Looking for an alternative to coding-workflow or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador