소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 3일 16:32
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill ttt명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | ttt |
| description | Manage TinyTalkingTodos lists and items via the ttt CLI |
| metadata | {"openclaw":{"emoji":"✅","requires":{"bins":["ttt"]},"homepage":"https://tinytalkingtodos.com"}} |
Use ttt to manage todo lists and items from the command line. The CLI syncs with TinyTalkingTodos in real-time.
npm install -g @ojschwa/ttt-cli
Or install locally for development:
cd /path/to/talking-todo/ttt-cli
npm install
npm run build
npm link
Verify with ttt --help.
Before using the CLI, the user must be authenticated:
# Check auth status
ttt auth status
# Login via browser (opens OAuth flow)
ttt auth login
# Logout
ttt auth logout
# Export credentials as env vars (for scripts)
ttt auth export
ttt list ls
Output (compact, token-efficient):
Today [2/5]
Groceries [0/3]
Work Tasks [1/4]
For structured data:
ttt list ls --json
ttt list get "Groceries"
# or by ID
ttt list get list-abc123
ttt list create "Weekend Plans"
ttt list create "Shopping" --icon "🛒" --color "#FF6B6B"
Options:
--color <hex> - Background color--icon <emoji> - List icon--type <type> - List typettt list update "Groceries" --name "Shopping List"
ttt list update "Shopping List" --icon "🛒" --color "#00FF00"
Options:
--name <name> - New list name--color <hex> - Background color--icon <emoji> - List icon--type <type> - List typettt list delete "Old List"
ttt list rm "Old List" # alias
# Force delete even if list has todos
ttt list delete "Old List" --force
ttt todo ls --list "Groceries"
Output (compact):
Groceries [1/4]
✓ Milk id:todo-abc123
○ Bread id:todo-def456
○ Eggs id:todo-ghi789
○ Butter id:todo-jkl012
For JSON output:
ttt todo ls --list "Groceries" --json
Basic:
ttt todo add "Buy avocados" --list "Groceries"
With options:
ttt todo add "Doctor appointment" --list "Health" \
--date 2026-02-15 \
--time 14:30 \
--notes "Bring insurance card"
ttt todo add "Try new pasta place" --list "Restaurants" \
--url "https://example.com/restaurant" \
--street-address "123 Main St" \
--rating 4
ttt todo add "Tomatoes" --list "Groceries" \
--amount 2.50 \
--category "Produce" \
--emoji "🍅"
All --list options:
| Option | Description | Example |
|---|---|---|
--notes <text> | Additional notes | --notes "organic preferred" |
--date <YYYY-MM-DD> | Due date | --date 2026-02-15 |
--time <HH:MM> | Due time | --time 14:30 |
--url <url> | Associated URL | --url "https://..." |
--emoji <emoji> | Item emoji | --emoji "🎉" |
--email <email> | Associated email | --email "contact@..." |
--street-address <addr> | Location | --street-address "123 Main" |
--number <n> | Numeric value | --number 5 |
--amount <n> | Amount/price | --amount 12.99 |
--rating <1-5> | Star rating | --rating 4 |
--type <A-E> | Item type | --type A |
--category <name> | Category | --category "Urgent" |
ttt todo done todo-abc123
The todo ID is shown in the compact output format after id:.
ttt todo undone todo-abc123
ttt todo update todo-abc123 --text "New text"
ttt todo update todo-abc123 --category "Urgent" --date 2026-02-15
ttt todo update todo-abc123 --done # mark as done
ttt todo update todo-abc123 --not-done # mark as not done
Options:
--text <text> - New todo text--notes, --date, --time, --url, --emoji, --email, --street-address--number, --amount, --rating, --type, --category--done / --not-done - Toggle completion statusttt todo delete todo-abc123
# or use alias
ttt todo rm todo-abc123
Add multiple todos at once using JSON:
ttt todo batch-add --list "Groceries" --items '[
{"text": "Milk"},
{"text": "Eggs", "fields": {"category": "Dairy"}},
{"text": "Bread", "fields": {"amount": 3.50}}
]'
Each item requires text and optionally fields with any todo field.
Update multiple todos at once:
ttt todo batch-update --items '[
{"id": "todo-abc123", "fields": {"done": true}},
{"id": "todo-def456", "fields": {"text": "Updated text", "category": "Urgent"}}
]'
Each item requires id and fields with the updates to apply.
All mutating operations are recorded and can be undone:
# Undo the last operation
ttt undo
# Undo the last 3 operations
ttt undo 3
# View undo history
ttt history
ttt history --limit 20
ttt history --json
Undo supports: todo add/delete/update, batch-add/update, mark done/undone, list create/update/delete.
The daemon keeps a persistent WebSocket connection for faster commands:
# Start daemon (auto-starts on first command if not running)
ttt daemon start
# Check status
ttt daemon status
# Stop daemon
ttt daemon stop
The daemon auto-shuts down after 30 minutes of inactivity.
--json when you need to parse data or extract specific fieldsid:<todo-id>) for updatesttt undo reverts the last operationttt todo add "Milk" --list "Groceries" --category "Dairy"
ttt todo add "Bread" --list "Groceries" --category "Bakery"
ttt todo add "Apples" --list "Groceries" --amount 3.50 --category "Produce"
# View todos
ttt todo ls --list "Today"
# Mark one done (using ID from output)
ttt todo done todo-xyz789
ttt list create "Weekend Trip" --icon "🏕️"
ttt todo add "Pack tent" --list "Weekend Trip"
ttt todo add "Check weather" --list "Weekend Trip" --url "https://weather.com"
ttt todo add "Gas up car" --list "Weekend Trip"
ttt todo batch-add --list "Party Supplies" --items '[
{"text": "Balloons", "fields": {"category": "Decorations"}},
{"text": "Cake", "fields": {"category": "Food", "amount": 45.00}},
{"text": "Plates", "fields": {"category": "Supplies", "number": 20}},
{"text": "Candles", "fields": {"category": "Decorations"}}
]'
ttt todo batch-update --items '[
{"id": "todo-abc", "fields": {"done": true}},
{"id": "todo-def", "fields": {"done": true}},
{"id": "todo-ghi", "fields": {"done": true}}
]'
# Accidentally deleted something? Undo it
ttt undo
# Made several mistakes? Undo multiple
ttt undo 3