KS
Killer-Skills

task — how to use task chrome extension how to use task chrome extension, task alternative to traditional bookmarking, task setup guide for developers, task vs bookmark manager, what is task chrome extension, task install and configuration

v1.0.0
GitHub

About this Skill

Perfect for Development Agents needing integrated workflow orchestration from task analysis to Git commit. Task is a Chrome Extension for managing bookmarks with tags and search functionality, enabling efficient workflow orchestration.

Features

Utilizes workflow orchestration with Phase 1: analysis, Phase 2: implementation, and Phase 3: review
Supports Git commit management for feat, fix, and refactor types
Applies /developer and /frontend skills for logic and UI implementation
Enables functionality-based intermediate commits
Includes /reviewer skill application for issue resolution and feedback

# Core Topics

mag123c mag123c
[0]
[0]
Updated: 3/6/2026

Quality Score

Top 5%
30
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add mag123c/linkhub

Agent Capability Analysis

The task MCP Server by mag123c is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use task chrome extension, task alternative to traditional bookmarking, task setup guide for developers.

Ideal Agent Persona

Perfect for Development Agents needing integrated workflow orchestration from task analysis to Git commit.

Core Value

Empowers agents to manage entire development cycles with tags, search, and workflow automation, utilizing Git commit integration and workflow phases like analysis, implementation, and review, all while applying skills like /developer and /frontend for tailored development experiences.

Capabilities Granted for task MCP Server

Automating task management with workflow orchestration
Generating Git commits for feat/fix/refactor tasks
Orchestrating code reviews with /reviewer skill application

! Prerequisites & Limits

  • Requires Git integration
  • Chrome Extension dependency
  • Limited to development workflows
Project
SKILL.md
4.2 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

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 직접 커밋 금지, 브랜치에서 작업
  • 빌드 확인: 커밋 전 반드시 빌드 성공 확인
  • 작은 단위: 큰 작업은 여러 브랜치로 분할 고려

Related Skills

Looking for an alternative to task or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication