Stats
Actions
Tags
From akiflow
Akiflow task management — create, list, complete, delete, move tasks and manage labels
How this skill is triggered — by the user, by Claude, or both
Slash command
/akiflow:akiflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Akiflow API v5를 Python CLI 스크립트로 조작합니다. stdlib만 사용, 외부 의존성 없음.
Akiflow API v5를 Python CLI 스크립트로 조작합니다. stdlib만 사용, 외부 의존성 없음.
${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py
| 명령 | 설명 | 예시 |
|---|---|---|
auth | 인증 설정 (브라우저 자동 추출) | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py auth |
auth --token | JWT 토큰 수동 입력 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py auth --token "eyJ..." |
add | 태스크 생성 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py add "PR 리뷰하기" |
list | 태스크 목록 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py list --today |
done | 태스크 완료 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py done TASK_ID |
delete | 태스크 삭제 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py delete TASK_ID |
move | 날짜 변경 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py move TASK_ID 2026-03-25 |
labels | 라벨(프로젝트) 목록 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py labels |
check | 인증 상태 확인 | python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py check |
| 옵션 | 설명 | 예시 |
|---|---|---|
--date, -d | 예정일 | add "회의 준비" -d 2026-03-25 |
--description | 설명 | add "리뷰" --description "PR #123 코드 리뷰" |
--priority, -p | 우선순위 (0~3) | add "긴급 배포" -p 3 |
--label, -l | 라벨(프로젝트) 이름 | add "데이터 정리" -l "Work" |
우선순위: 0=없음, 1=낮음, 2=중간, 3=높음
| 옵션 | 설명 |
|---|---|
--today, -t | 오늘 태스크만 |
--date, -d | 특정 날짜 필터 (YYYY-MM-DD) |
--all, -a | 완료/삭제 포함 |
--limit, -n | 최대 개수 (기본 50) |
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py <command> <args>--date에 오늘 날짜 사용python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py auth
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py auth --token "eyJ..."
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/akiflow-cli.py check
~/.config/af/credentials.jsonauth 재실행| Tool | Purpose |
|---|---|
Bash | CLI 스크립트 실행 |
/akiflow PR 리뷰하기 태스크 추가해줘
/akiflow 오늘 할 일 목록 보여줘
/akiflow "데이터 파이프라인 점검" 내일로 추가해줘, 우선순위 높음
/akiflow 이 태스크 완료 처리해줘
/akiflow 라벨 목록 보여줘
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub bongho/re-consider-ed --plugin akiflow