task — community linkhub, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

이 스킬 정보

Perfect for Development Agents needing comprehensive task management with Git integration and workflow orchestration. Chrome Extension for advanced bookmark management with tags and search

mag123c mag123c
[0]
[0]
Updated: 1/21/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/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
7/11
Quality Score
25
Canonical Locale
ko
Detected Body Locale
ko

Perfect for Development Agents needing comprehensive task management with Git integration and workflow orchestration. Chrome Extension for advanced bookmark management with tags and search

이 스킬을 사용하는 이유

Empowers agents to manage entire development cycles from task analysis to Git commits, utilizing workflow phases, and applying developer and reviewer skills with features like tags, search, and branch creation, all while integrating with Git for seamless version control.

최적의 용도

Perfect for Development Agents needing comprehensive task management with Git integration and workflow orchestration.

실행 가능한 사용 사례 for task

Automating task assignments with tags and search functionality
Generating branch names based on task types (feat/fix/refactor)
Debugging issues by identifying affected files and determining task types

! 보안 및 제한 사항

  • Requires Git installation and configuration
  • Limited to tasks with defined workflow phases (analysis, implementation, 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 supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

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

Perfect for Development Agents needing comprehensive task management with Git integration and workflow orchestration. Chrome Extension for advanced bookmark management with tags and search

How do I install task?

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

What are the use cases for task?

Key use cases include: Automating task assignments with tags and search functionality, Generating branch names based on task types (feat/fix/refactor), Debugging issues by identifying affected files and determining task types.

Which IDEs are compatible with task?

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

Requires Git installation and configuration. Limited to tasks with defined workflow phases (analysis, implementation, 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 mag123c/linkhub/task. 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 task 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.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

task

Install task, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Task Skill

통합 워크플로우 오케스트레이션. 작업 분석부터 Git 커밋까지 전체 사이클 관리.

워크플로우

/task "작업 설명"
    │
    ├─ Phase 1: 분석
    │   ├─ 요구사항 파악
    │   ├─ 영향받는 파일 식별
    │   ├─ 작업 타입 결정 (feat/fix/refactor)
    │   └─ 브랜치 생성
    │
    ├─ Phase 2: 구현
    │   ├─ /developer 스킬 적용 (타입, 스토리지, 로직)
    │   ├─ /frontend 스킬 적용 (UI, 컴포넌트)
    │   └─ 기능 단위로 중간 커밋
    │
    ├─ Phase 3: 리뷰
    │   ├─ /reviewer 스킬 적용
    │   ├─ [Critical] 이슈 → Phase 2로 돌아가 수정
    │   ├─ [Major] 이슈 → Phase 2로 돌아가 수정
    │   └─ [Minor] 이슈 → 선택적 수정
    │
    └─ Phase 4: 마무리
        ├─ /verify 실행
        ├─ 최종 커밋
        └─ (선택) PR 생성 안내

Phase 1: 분석

작업 타입 판별

타입브랜치 접두사설명
새 기능feat/새로운 기능 추가
버그 수정fix/버그 수정
리팩토링refactor/코드 개선 (기능 변경 없음)
문서docs/문서 작성/수정
스타일style/코드 포맷팅
테스트test/테스트 추가/수정

브랜치 생성

bash
1git checkout -b {타입}/{kebab-case-설명} 2# 예: feat/tag-filter, fix/search-bug

분석 체크리스트

  • 요구사항 명확히 이해
  • 영향받는 파일/모듈 식별
  • 필요한 스킬 결정 (developer, frontend, 둘 다)
  • 작업 단위 분할 (커밋 단위)

Phase 2: 구현

스킬 호출 순서

  1. 데이터/로직 먼저: /developer 스킬 적용

    • 타입 정의, 인터페이스
    • Storage 유틸리티
    • 비즈니스 로직
  2. UI/컴포넌트: /frontend 스킬 적용

    • React 컴포넌트
    • 커스텀 훅
    • 스타일링

기능 단위 커밋

구현 중 의미 있는 단위마다 커밋:

bash
1git add <관련 파일들> 2git commit -m "{타입}: {설명}"

커밋 메시지 규칙 (Conventional Commits):

feat: add tag filtering logic
feat: implement TagFilter component
fix: search not matching partial text
refactor: extract storage utilities

커밋 단위 기준:

  • 하나의 논리적 변경 = 하나의 커밋
  • 롤백 시 독립적으로 되돌릴 수 있는 단위

Phase 3: 리뷰

/reviewer 스킬 적용

구현 완료 후 자동으로 리뷰 수행:

우선순위조치
[Critical]반드시 수정 → Phase 2
[Major]수정 권장 → Phase 2
[Minor]선택적 수정

수정 루프

리뷰 → 이슈 발견 → 수정 (developer/frontend) → 재리뷰

이슈가 없거나 Minor만 남으면 Phase 4로 진행.

Phase 4: 마무리

최종 점검 (/verify 스킬 호출)

/verify 실행
    ├─ pnpm build    # 빌드 확인
    ├─ pnpm lint     # 린트 확인
    └─ pnpm test:run # 테스트 확인

디렉토리별 CLAUDE.md 작성/갱신

새 디렉토리 생성 또는 주요 변경 시 해당 디렉토리에 CLAUDE.md 작성.

최종 커밋 (필요시)

bash
1git add . 2git commit -m "{타입}: {전체 작업 요약}"

예시

입력

/task 태그 필터링 기능 추가

실행 흐름

1. 분석
   - 타입: feat (새 기능)
   - 브랜치: feat/tag-filter
   - 영향: src/shared/types/, src/popup/components/
   - 스킬: developer → frontend

2. 구현
   - /developer: 필터 로직, 타입 정의
   - 커밋: "feat: add tag filter logic"
   - /frontend: TagFilter.tsx 컴포넌트
   - 커밋: "feat: implement TagFilter component"

3. 리뷰
   - /reviewer 실행
   - [Minor] 변수명 개선 제안
   - 선택적 수정

4. 마무리
   - /verify: 빌드/린트/테스트 통과
   - 완료

주의사항

  • 커밋 마킹 금지: Co-Author, Claude 마킹 절대 금지
  • 브랜치 보호: main 직접 커밋 금지, 브랜치에서 작업
  • 빌드 확인: 커밋 전 반드시 빌드 성공 확인
  • 작은 단위: 큰 작업은 여러 브랜치로 분할 고려

관련 스킬

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

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자