{"id":43675500,"url":"https://github.com/yu-iskw/coding-agent-skills","last_synced_at":"2026-02-05T00:52:07.339Z","repository":{"id":335983462,"uuid":"1146741804","full_name":"yu-iskw/coding-agent-skills","owner":"yu-iskw","description":"A curated collection of executable Agent Skills and SOPs for AI coding agents like Cursor, Claude Code, and Gemini CLI.","archived":false,"fork":false,"pushed_at":"2026-02-02T06:10:40.000Z","size":39,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-02T18:05:09.139Z","etag":null,"topics":["agent-skill","agent-skills","claude-code","codex","codex-cli","gemini-cli"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yu-iskw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-31T15:54:29.000Z","updated_at":"2026-02-02T06:10:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/yu-iskw/coding-agent-skills","commit_stats":null,"previous_names":["yu-iskw/coding-agent-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/yu-iskw/coding-agent-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yu-iskw%2Fcoding-agent-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yu-iskw%2Fcoding-agent-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yu-iskw%2Fcoding-agent-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yu-iskw%2Fcoding-agent-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yu-iskw","download_url":"https://codeload.github.com/yu-iskw/coding-agent-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yu-iskw%2Fcoding-agent-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29104513,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-04T22:44:52.815Z","status":"ssl_error","status_checked_at":"2026-02-04T22:44:16.428Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-skill","agent-skills","claude-code","codex","codex-cli","gemini-cli"],"created_at":"2026-02-05T00:52:05.159Z","updated_at":"2026-02-05T00:52:07.333Z","avatar_url":"https://github.com/yu-iskw.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Coding Agent Skills: The Orchestration Framework for Industrial-Grade AI Workflows\n\nStandard coding agents are powerful but often hit a **\"Complexity Ceiling\"** in long-horizon tasks. As conversations grow, context decays, hallucinations increase, and reliability drops.\n\n**Coding Agent Skills** transform your repository from a collection of code into an **Agent-Ready Environment**. By codifying workflows into deterministic, reusable skills, you enable agents to work with higher autonomy, precision, and parallelism.\n\n## Why Coding Agent Skills?\n\nStandard agents operate in a single-session vacuum. Coding Agent Skills provide:\n\n- **Orchestration**: Decouple planning from execution for complex tasks.\n- **Reliability**: Replace vague prompts with structured, executable SOPs.\n- **Efficiency**: Parallelize work that would take a single agent hours to complete.\n\n## Key Advantages for Advanced Users\n\n1.  **Multi-Agent Parallelism**: Break monolithic tasks into sub-tasks and execute them simultaneously across multiple agent instances.\n2.  **Deterministic SOPs**: Standardize complex workflows (e.g., security audits, library upgrades) as executable SOPs that ensure zero steps are skipped.\n3.  **Context Hygiene**: Use progressive disclosure to feed agents only the data they need, maintaining high reasoning quality.\n4.  **Autonomous Fixer Loops**: Encapsulate `Test -\u003e Analyze -\u003e Fix` loops so agents self-correct without human intervention.\n5.  **Platform Portability**: Write skills once; run them across **Cursor**, **Claude Code**, **Gemini CLI**, and **Codex**.\n6.  **Safety Governance**: Define granular permission modes per skill to manage risk in autonomous executions.\n7.  **Institutional Memory**: Codify \"Tribal Knowledge\" into skills so every agent (and human) operates at an expert level.\n8.  **Sub-Agent Specialization**: Spin up micro-personas (e.g., \"SQL Optimizer\") for domain-specific precision.\n9.  **Headless CI/CD**: Trigger skills in pipelines for automated PR validation and structured reporting.\n10. **Low-Code Customization**: Add new capabilities by simply adding a `SKILL.md` file—no extension development required.\n\n## Building an Agent-Ready Repository\n\nAn Agent-Ready repository isn't just about good code; it's about **explicit intent**. By providing `SKILL.md` files, you give AI agents a clear \"map\" of how to interact with your codebase, what tools to use, and how to validate their own work.\n\n## Available Skills\n\nThis repository includes the following coding agent skills:\n\n\u003c!-- START-SKILLS --\u003e\n\n- **[orchestrating-parallel-tasks](skills/orchestrating-parallel-tasks/)**: Decomposes complex or large-scale requirements into discrete, mutually exclusive sub-tasks that can be executed in parallel by multiple agents. Use when a task is described as an \"epic\", spans multiple architectural layers, or would benefit from concurrent development to reduce time-to-completion.\n- **[claude-code-cli](skills/claude-code-cli/)**: Executes tasks using the Claude Code CLI (`claude`). Automatically determines the safest permission mode (plan, acceptEdits, or bypassPermissions) based on the task type.\n- **[codex-cli](skills/codex-cli/)**: Executes tasks using the Codex CLI (`codex`). Automatically determines the least privilege required (Read-Only, Editor, or Autonomous) based on the user's request and handles security approvals.\n- **[gemini-cli](skills/gemini-cli/)**: Executes tasks using the Gemini CLI (`gemini`). Automatically determines the safest approval mode (plan, auto_edit, or yolo) based on the task type.\n\u003c!-- END-SKILLS --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyu-iskw%2Fcoding-agent-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyu-iskw%2Fcoding-agent-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyu-iskw%2Fcoding-agent-skills/lists"}