skills/claude-skills-open/skills/pm/pm-done/SKILL.md
Mark task done + schedule follow-up
npx skillsauth add aaaaqwq/agi-super-skills pm-doneInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Mark a task as done and optionally create a follow-up task
| What | Path |
|------|------|
| Tasks | $PM_PATH/pm_tasks_master.csv |
| Projects | $PM_PATH/pm_projects_master.csv |
import pandas as pd
from datetime import date, timedelta
tasks = pd.read_csv('$PM_PATH/pm_tasks_master.csv', on_bad_lines='skip')
# Find by keyword, task_id, or project_id
# Example: find Client D invoice task
match = tasks[tasks['task_name'].str.contains('invoice', case=False, na=False) &
(tasks['status'] != 'done')]
today = str(date.today())
tasks.loc[tasks['task_id'] == 'task-XXX', 'status'] = 'done'
tasks.loc[tasks['task_id'] == 'task-XXX', 'last_updated'] = today
tasks.loc[tasks['task_id'] == 'task-XXX', 'notes'] = tasks.loc[
tasks['task_id'] == 'task-XXX', 'notes'
].fillna('').astype(str) + f' DONE {today}. [completion details]'
tasks.to_csv('$PM_PATH/pm_tasks_master.csv', index=False)
After marking done, ALWAYS ask user:
"Task marked done. Should I create a follow-up? For example: check payment in 5 days, verify delivery, etc."
If user says yes (or if the task type naturally needs a follow-up):
import uuid
followup_task = {
'task_id': f'task-{uuid.uuid4().hex[:4]}',
'project_id': original_task['project_id'],
'parent_task_id': '',
'task_name': 'Follow-up: [what to check]',
'description': '[Details of what to verify]',
'status': 'todo',
'priority': 'medium',
'priority_score': 0.5,
'assignee': 'Ivan',
'created_date': today,
'last_updated': today,
'deadline': str(date.today() + timedelta(days=N)), # typically 3-7 days
'estimated_hours': 0.25,
'actual_hours': '',
'actual_tokens': '',
'blocked_by': '',
'blocking': '',
'crm_activity_id': '',
'crm_person_linkedin_url': '',
'tags': original_task.get('tags', ''),
'notes': f'Follow-up from {original_task["task_id"]}',
'order_index': ''
}
tasks = pd.concat([tasks, pd.DataFrame([followup_task])], ignore_index=True)
tasks.to_csv('$PM_PATH/pm_tasks_master.csv', index=False)
These task types ALWAYS need a follow-up (suggest automatically):
| Task type | Follow-up | Days | |-----------|-----------|------| | Invoice sent | Check if paid | 5-7 | | Email sent (important) | Check for reply | 3-5 | | Proposal/quote sent | Check for response | 3-5 | | Deliverable submitted | Check for feedback | 3-5 | | Meeting scheduled | Prepare for meeting | 1 day before | | Escalation sent | Check for resolution | 2-3 |
IMPORTANT: When Claude helps execute a task during a conversation (sends email, creates invoice, writes a message, etc.), Claude MUST:
This prevents stale tasks from showing up in daily briefings.
pm_tasks_master.csv is for dev/project tasks only. Sales follow-ups (invoice checks, payment follow-ups, deal closing) are tracked in leads.csv via next_action and next_action_date. Do NOT create pm tasks for sales activities.
show-today -- daily task view (references this skill)daily-briefing -- morning summarycreate-project -- create project with taskslog-activity -- CRM activity loggingupdate-lead -- update sales follow-ups in leads.csvtesting
AI驱动的智能浏览器自动化工具。使用LLM理解页面并自动执行任务,比传统Playwright更智能、更省token。适用于复杂交互、动态页面、需要智能决策的浏览器操作。Chrome浏览器优先。
tools
网页登录态管理。使用 fast-browser-use (fbu) 管理各平台登录状态,定期检查可用性,新平台授权时自动保存 profile。
development
Monitor and report on API provider quotas, balances, and usage. Query official providers (Moonshot, DeepSeek, xAI, Google AI Studio) and relay/proxy providers (Xingjiabiapi, Aixn, WoW) via their billing APIs. Also checks subscription services (Brave Search, OpenRouter). Generates quota reports. Triggers on "查额度", "API余额", "quota check", "billing report", "api balance", "供应商额度", "中转站余额", "费用报告", "check balance", "how much credit".
development
# A股基金监控 Skill A股基金净值监控,支持实时估值和盘后净值,自动判断交易日/节假日。 ## 用法 ### 快速监控(命令行) ```bash # 默认配置,输出到控制台 bash ~/clawd/skills/a-fund-monitor/scripts/monitor.sh # 推送到群(使用--push参数) bash ~/clawd/skills/a-fund-monitor/scripts/monitor.sh --push # 监控指定基金 bash ~/clawd/skills/a-fund-monitor/scripts/monitor.sh --codes "000979 002943" ``` ### Agent调用 ``` 执行A股基金监控任务。 1. 读取配置文件: ~/clawd/skills/a-fund-monitor/config.json 2. 获取实时净值数据 3. 非交易日自动切换为简短报告 配置文件格式: { "funds": [ {"code": "000979", "name": "景顺长城沪港深精选股票