SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill tascli명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
| name | tascli |
| description | > Use when this capability is needed. |
tascli is a local CLI tool for tracking tasks and records. Data is stored in SQLite at ~/.local/share/tascli/tascli.db.
done) automatically creates a record.-c).tascli task "description" # due end of today
tascli task "description" friday # due this Friday
tascli task "description" "2026/03/20 3PM" # due specific datetime
tascli task "description" -c work # with category
tascli task "description" "Daily 9AM" -c work # recurring task
Time strings: today, tomorrow, friday, eod, eom, eoy, 2026/03/20, 3PM, tomorrow 9AM, 2026/03/20 14:00
Recurring schedules: Daily 9AM, Weekly Monday 9AM, Weekly Monday-Friday 3PM, Monthly 1st 9AM, Yearly 7/4 12PM
tascli list task # open tasks (default)
tascli list task today # due today
tascli list task -c work # by category
tascli list task -s all # all statuses
tascli list task -s done # completed tasks
tascli list task --search "text" # search content
tascli list task --overdue # show overdue tasks
Statuses: ongoing, done, cancelled, duplicate, suspended, pending, open, closed, all
tascli list task # get index first
tascli done 1 # complete by index
tascli done 1 -c "optional comment" # with comment
tascli update 1 -t friday # change deadline
tascli update 1 -c work # change category
tascli update 1 -w "new description" # replace content
tascli update 1 -a "appended note" # append to content
tascli update 1 -s suspended # change status
tascli list task -s all --search "text" # find it first
yes | tascli delete 1 # delete by index (yes skips confirmation)
tascli record "what happened" # timestamped now
tascli record "what happened" -c feeding # with category
tascli record "what happened" -t "2PM" # at a specific time
tascli record "what happened" -t "yesterday 3PM"
tascli list record # recent records
tascli list record -c feeding # by category
tascli list record -d 7 # last 7 days
tascli list record -s "yesterday" -e "today" # time range
tascli list record --search "text" # search content
tascli list task --search "keyword" — check for duplicates before creatingtascli task "do something" friday -c worktascli list task — indexes are ephemeral and reset on each list, always re-list before done, update, or deletetascli done <index> — this also creates a record automaticallytascli record "observed something" -c work — for things without a prior task; search with tascli list record --search "keyword" first to avoid duplicate recordsSource: Aperocky/tascli — distributed by TomeVault.