epic — gestión de Epics skilluse, community, gestión de Epics, ide skills, CLI para Epics, seguimiento de progreso, referencias de diseño, organización de problemas, herramientas de gestión de proyectos

v1.0.0

Acerca de este Skill

Perfecto para Agentes de Gestión de Proyectos que necesitan una organización de problemas estructurada y capacidades de gestión de epics. Epic es una herramienta de gestión de Epics que permite organizar problemas relacionados

Características

Creación de Epics
Gestión de Epics con CLI
Seguimiento del progreso de los sprints
Referencias de diseño
Organización de problemas relacionados

# Core Topics

skilluse skilluse
[42]
[2]
Updated: 3/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/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 Quality floor passed for review
Review Score
10/11
Quality Score
53
Canonical Locale
en
Detected Body Locale
en

Perfecto para Agentes de Gestión de Proyectos que necesitan una organización de problemas estructurada y capacidades de gestión de epics. Epic es una herramienta de gestión de Epics que permite organizar problemas relacionados

¿Por qué usar esta habilidad?

Habilita a los agentes a crear y gestionar Epics para organizar problemas relacionados, proporcionando un enfoque estructurado para la gestión de problemas utilizando estructuras de directorios y archivos markdown como epic.md y progress.md.

Mejor para

Perfecto para Agentes de Gestión de Proyectos que necesitan una organización de problemas estructurada y capacidades de gestión de epics.

Casos de uso accionables for epic

Crear y gestionar Epics para problemas relacionados
Seguir el progreso de los sprints utilizando archivos progress.md
Organizar documentos de referencia dentro de Epics

! Seguridad y limitaciones

  • Requiere configuración de estructura de directorios
  • Limitado a formatos de archivos markdown como .md
  • Se requiere un seguimiento manual del progreso de los sprints

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

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 epic?

Perfecto para Agentes de Gestión de Proyectos que necesitan una organización de problemas estructurada y capacidades de gestión de epics. Epic es una herramienta de gestión de Epics que permite organizar problemas relacionados

How do I install epic?

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

What are the use cases for epic?

Key use cases include: Crear y gestionar Epics para problemas relacionados, Seguir el progreso de los sprints utilizando archivos progress.md, Organizar documentos de referencia dentro de Epics.

Which IDEs are compatible with epic?

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 epic?

Requiere configuración de estructura de directorios. Limitado a formatos de archivos markdown como .md. Se requiere un seguimiento manual del progreso de los sprints.

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 skilluse/skilluse/epic. 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 epic 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

epic

Install epic, 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

Epic - Epic Manager

Create and manage Epics for organizing related issues.

Directory Structure

project/
└── specs/
    ├── epics/
    │   ├── cli/
    │   │   ├── epic.md                   # Epic overview and issue references
    │   │   ├── progress.md               # Sprint progress tracking
    │   │   └── references/               # Reference documents
    │   │       └── Design.md
    │   └── website/
    │       ├── epic.md
    │       ├── progress.md
    │       └── references/
    └── issues/
        └── ...

What is an Epic?

An Epic is a collection of related issues grouped by major feature area or project.

Components:

  • epic.md - Overview, goals, and issue references
  • progress.md - Sprint progress tracking log
  • references/ - Design docs, specs, requirements

When to Use

  • User says "create epic", "new epic", "start project"
  • Starting a new major feature area
  • Organizing related issues under a theme
  • Adding reference documents to an epic

Creating an Epic

Step 1: Create Epic Structure

bash
1mkdir -p specs/epics/epic-name/references

Step 2: Create epic.md

markdown
1# [Epic Title] 2 3Brief description of what this epic encompasses. 4 5## Overview 6 7High-level goals and scope of this epic. 8 9## Key Features 10 111. Feature area 1 122. Feature area 2 133. Feature area 3 14 15## Related Issues 16 17| Issue | Title | Status | 18|-------|-------|--------| 19| task01-xxx | Description | pending | 20| task02-xxx | Description | pending | 21 22## Progress 23 24See [progress.md](progress.md) for sprint tracking. 25 26## References 27 28- [Design.md](references/Design.md) - Main design specification

Step 3: Create progress.md

markdown
1# [Epic Name] Progress 2 3## Current Status 4Brief status description. 5 6## In Progress 7- [ ] issue-id - Description 8 9## Completed Sprints 10 11### [Sprint Name] 12- [x] issue-id - Description 13 14#### [YYYY-MM-DD] Session #N 15- Working on: issue-id 16- Completed: F001, F002 17- Notes: 18 - What was done 19 - Decisions made

Step 4: Add Reference Documents

Copy or create reference documents in specs/epics/epic-name/references/:

  • Design specifications
  • Architecture diagrams
  • API documentation
  • Requirements documents

Step 5: Git Commit

bash
1git add specs/epics/epic-name/ 2git commit -m "feat: create epic-name epic"

Updating an Epic

Adding Issues to Epic

Update the "Related Issues" table in epic.md:

markdown
1| Issue | Title | Status | 2|-------|-------|--------| 3| task01-xxx | Description | completed | 4| task02-xxx | Description | in-progress | 5| task03-xxx | New issue | pending |

Updating Progress

Add session entries to progress.md:

markdown
1#### [YYYY-MM-DD] Session #N 2- Working on: issue-id 3- Completed: F001, F002, F003 4- Commits: abc123 5- Notes: 6 - Brief description of work done

Adding References

Copy new reference documents to references/ and update epic.md:

markdown
1## References 2 3- [Design.md](references/Design.md) - Main design specification 4- [API.md](references/API.md) - API documentation

Rules

  • Each Epic MUST have epic.md and progress.md
  • Update issue status in epic.md when issues complete
  • Log all sessions in progress.md
  • Keep references organized and up-to-date

Habilidades relacionadas

Looking for an alternative to epic 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