Application Tracker
by @wanghong5233
Start and review web form autofill workflow with human approval.
clawhub install application-tracker📖 About This Skill
name: application-tracker description: Start and review web form autofill workflow with human approval.
Application Tracker Skill
Trigger
Activate when user asks:
Workflow
1. If user gives a form URL, call:
- POST http://127.0.0.1:8010/api/form/fill/start
- Body:
- {"url":"
2. Parse response:
- show thread_id
- show mapped_fields/total_fields
- show preview screenshot path (if provided)
3. Ask user to decide:
- approve (execute fill only)
- reject (close thread)
4. Execute review:
- POST http://127.0.0.1:8010/api/form/fill/review
- Body example:
- {"thread_id":"
5. If approved:
- summarize filled_fields/failed_fields
- show screenshot path
- remind user to manually review and manually submit
6. If user asks pending threads:
- call GET http://127.0.0.1:8010/api/form/fill/pending
- list thread ids and mapped field counts
Command templates (exec tool + curl)
curl -sS -X POST "http://127.0.0.1:8010/api/form/fill/start" -H "Content-Type: application/json" -d '{"url":"","profile":{"name":"","email":""},"max_actions":20}'
curl -sS -X POST "http://127.0.0.1:8010/api/form/fill/review" -H "Content-Type: application/json" -d '{"thread_id":"","decision":"approve","max_actions":20}'
curl -sS -X POST "http://127.0.0.1:8010/api/form/fill/review" -H "Content-Type: application/json" -d '{"thread_id":"","decision":"reject"}'
curl -sS "http://127.0.0.1:8010/api/form/fill/pending?limit=20"