{
  "schemaVersion": "1.0",
  "item": {
    "slug": "client-project-manager",
    "name": "Client Project Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/seanwyngaard/client-project-manager",
    "canonicalUrl": "https://clawhub.ai/seanwyngaard/client-project-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/client-project-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=client-project-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/client-project-manager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/client-project-manager",
    "agentPageUrl": "https://openagent3.xyz/skills/client-project-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/client-project-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/client-project-manager/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Client Project Manager",
        "body": "A complete freelance business management system. Track clients, projects, deadlines, deliverables, invoices, and communications from a single skill."
      },
      {
        "title": "How to Use",
        "body": "/client-project-manager add client \"Acme Corp\" --contact \"jane@acme.com\" --rate \"$100/hr\"\n/client-project-manager add project \"Website Redesign\" --client \"Acme Corp\" --deadline \"2026-03-15\" --budget \"$5000\"\n/client-project-manager status\n/client-project-manager update \"Website Redesign\" --progress 60 --note \"Homepage mockup approved\"\n/client-project-manager invoice \"Acme Corp\" --project \"Website Redesign\"\n/client-project-manager weekly-update \"Acme Corp\"\n/client-project-manager dashboard"
      },
      {
        "title": "Data Storage",
        "body": "All data is stored in ./freelance-data/ as JSON files:\n\nfreelance-data/\n  clients.json        # Client CRM data\n  projects.json       # Active and completed projects\n  time-log.json       # Time tracking entries\n  invoices/           # Generated invoices\n  updates/            # Client update emails\n\nIf the directory doesn't exist, create it on first use. If files exist, read them first and preserve all existing data."
      },
      {
        "title": "add client",
        "body": "Add a new client to the CRM.\n\n/client-project-manager add client \"[Name]\" --contact \"[email]\" --rate \"[rate]\" --notes \"[notes]\"\n\nStore in clients.json:\n\n{\n  \"id\": \"client-uuid\",\n  \"name\": \"Acme Corp\",\n  \"contact_email\": \"jane@acme.com\",\n  \"default_rate\": \"$100/hr\",\n  \"notes\": \"Prefers Slack for communication\",\n  \"projects\": [],\n  \"total_billed\": 0,\n  \"total_paid\": 0,\n  \"created\": \"2026-02-13\",\n  \"status\": \"active\"\n}"
      },
      {
        "title": "add project",
        "body": "Add a new project under a client.\n\n/client-project-manager add project \"[Name]\" --client \"[Client]\" --deadline \"[date]\" --budget \"[amount]\" --deliverables \"[list]\"\n\nStore in projects.json:\n\n{\n  \"id\": \"project-uuid\",\n  \"name\": \"Website Redesign\",\n  \"client_id\": \"client-uuid\",\n  \"client_name\": \"Acme Corp\",\n  \"status\": \"active\",\n  \"progress\": 0,\n  \"budget\": 5000,\n  \"billed\": 0,\n  \"deadline\": \"2026-03-15\",\n  \"created\": \"2026-02-13\",\n  \"deliverables\": [\n    { \"name\": \"Homepage mockup\", \"status\": \"pending\", \"due\": \"2026-02-20\" },\n    { \"name\": \"Inner pages\", \"status\": \"pending\", \"due\": \"2026-03-01\" },\n    { \"name\": \"Development\", \"status\": \"pending\", \"due\": \"2026-03-10\" },\n    { \"name\": \"Launch\", \"status\": \"pending\", \"due\": \"2026-03-15\" }\n  ],\n  \"notes\": [],\n  \"time_entries\": []\n}"
      },
      {
        "title": "log time",
        "body": "Log time worked on a project.\n\n/client-project-manager log time \"[Project]\" --hours [X] --description \"[what you did]\"\n\nAppend to time-log.json:\n\n{\n  \"id\": \"entry-uuid\",\n  \"project_id\": \"project-uuid\",\n  \"client_id\": \"client-uuid\",\n  \"date\": \"2026-02-13\",\n  \"hours\": 3.5,\n  \"rate\": 100,\n  \"amount\": 350,\n  \"description\": \"Built responsive navigation and hero section\"\n}"
      },
      {
        "title": "update",
        "body": "Update project progress and add notes.\n\n/client-project-manager update \"[Project]\" --progress [0-100] --note \"[update]\" --deliverable \"[name]\" --status \"[done|in-progress|pending]\""
      },
      {
        "title": "status",
        "body": "Show current status of all active projects.\n\nOutput format:\n\n╔══════════════════════════════════════════════════════════════╗\n║                    FREELANCE DASHBOARD                       ║\n╠══════════════════════════════════════════════════════════════╣\n\n📊 Active Projects: 3\n💰 Outstanding Invoices: $2,500\n⏰ Hours This Week: 22.5\n📅 Next Deadline: Website Redesign (Acme Corp) — Mar 15\n\n──────────────────────────────────────────────────────────────\nPROJECT: Website Redesign\nCLIENT: Acme Corp | DEADLINE: Mar 15, 2026\nPROGRESS: ████████████░░░░░░░░ 60%\nBUDGET: $3,000 / $5,000 billed\nDELIVERABLES:\n  ✅ Homepage mockup (Feb 20) — DONE\n  🔄 Inner pages (Mar 1) — IN PROGRESS\n  ⬜ Development (Mar 10) — PENDING\n  ⬜ Launch (Mar 15) — PENDING\n──────────────────────────────────────────────────────────────"
      },
      {
        "title": "invoice",
        "body": "Generate a professional invoice for a client.\n\n/client-project-manager invoice \"[Client]\" --project \"[Project]\" --period \"[start] to [end]\"\n\nGenerate the invoice as both Markdown and HTML in freelance-data/invoices/:\n\nInvoice content:\n\nINVOICE #[INV-YYYY-NNN]\nDate: [today]\nDue: [today + 14 days]\n\nFROM:\n[Your name/business — read from freelance-data/config.json if exists]\n\nTO:\n[Client name]\n[Client contact]\n\nPROJECT: [Project name]\nPERIOD: [Date range]\n\n| Date | Description | Hours | Rate | Amount |\n|------|-------------|-------|------|--------|\n| ... time entries from period ... |\n\n                              Subtotal: $X,XXX.XX\n                              Tax (0%): $0.00\n                              TOTAL DUE: $X,XXX.XX\n\nPayment Terms: Net 14\nPayment Methods: [from config.json or \"Bank Transfer / PayPal\"]\n\nThank you for your business.\n\nSave as freelance-data/invoices/INV-2026-001-acme-corp.md and .html."
      },
      {
        "title": "weekly-update",
        "body": "Generate a professional weekly client update email.\n\n/client-project-manager weekly-update \"[Client]\"\n\nRead the client's projects, recent time entries, and notes. Generate:\n\nSubject: Weekly Update — [Project Name] — Week of [date]\n\nHi [Contact first name],\n\nHere's your weekly update on [Project Name]:\n\n**This Week:**\n- [Completed deliverables and progress]\n- [Key decisions made]\n- [Hours worked: X.X]\n\n**Next Week:**\n- [Planned deliverables]\n- [Any blockers or decisions needed from client]\n\n**Project Status:**\n- Progress: XX%\n- Budget used: $X,XXX / $X,XXX\n- On track for [deadline]: ✅ Yes / ⚠️ At risk / ❌ Behind\n\n[Any questions or items needing client input]\n\nBest,\n[Your name]\n\nSave to freelance-data/updates/ and display for copy-paste."
      },
      {
        "title": "payment-reminder",
        "body": "Generate a polite payment reminder for overdue invoices.\n\n/client-project-manager payment-reminder \"[Client]\"\n\nCheck for unpaid invoices past due date. Generate appropriate reminder:\n\n1-7 days overdue: Gentle reminder\n8-14 days overdue: Firm but professional follow-up\n15+ days overdue: Final notice with late fee mention"
      },
      {
        "title": "dashboard",
        "body": "Show a comprehensive business overview:\n\n╔══════════════════════════════════════════════════════════════╗\n║                  MONTHLY BUSINESS REPORT                     ║\n╠══════════════════════════════════════════════════════════════╣\n\n💰 Revenue This Month:     $4,250\n💰 Revenue Last Month:     $3,800  (↑ 12%)\n📊 Active Projects:        3\n✅ Completed This Month:   1\n⏰ Hours Billed:           42.5\n💵 Effective Hourly Rate:  $100/hr\n📋 Outstanding Invoices:   $2,500 (2 invoices)\n⚠️  Overdue Invoices:      $0\n\nTOP CLIENTS (by revenue):\n  1. Acme Corp        $2,500  (59%)\n  2. StartupXYZ       $1,250  (29%)\n  3. LocalBiz         $500    (12%)\n\nUPCOMING DEADLINES:\n  Feb 20 — Homepage mockup (Acme Corp)\n  Mar 01 — Content strategy (StartupXYZ)\n  Mar 15 — Website launch (Acme Corp)"
      },
      {
        "title": "config",
        "body": "Set your business details for invoices and communications.\n\n/client-project-manager config --name \"Your Name\" --business \"Your Business LLC\" --email \"you@email.com\" --payment \"PayPal: you@email.com / Bank: routing XXX\"\n\nSave to freelance-data/config.json."
      },
      {
        "title": "Data Integrity Rules",
        "body": "Never overwrite — always read existing data first, modify, then write back\nAlways backup — before any write operation, check data exists and is valid JSON\nUUID generation — use timestamp-based IDs: client-[timestamp], project-[timestamp]\nDate format — always use ISO 8601: YYYY-MM-DD\nCurrency — store as numbers, display with $ formatting"
      }
    ],
    "body": "Client Project Manager\n\nA complete freelance business management system. Track clients, projects, deadlines, deliverables, invoices, and communications from a single skill.\n\nHow to Use\n/client-project-manager add client \"Acme Corp\" --contact \"jane@acme.com\" --rate \"$100/hr\"\n/client-project-manager add project \"Website Redesign\" --client \"Acme Corp\" --deadline \"2026-03-15\" --budget \"$5000\"\n/client-project-manager status\n/client-project-manager update \"Website Redesign\" --progress 60 --note \"Homepage mockup approved\"\n/client-project-manager invoice \"Acme Corp\" --project \"Website Redesign\"\n/client-project-manager weekly-update \"Acme Corp\"\n/client-project-manager dashboard\n\nData Storage\n\nAll data is stored in ./freelance-data/ as JSON files:\n\nfreelance-data/\n  clients.json        # Client CRM data\n  projects.json       # Active and completed projects\n  time-log.json       # Time tracking entries\n  invoices/           # Generated invoices\n  updates/            # Client update emails\n\n\nIf the directory doesn't exist, create it on first use. If files exist, read them first and preserve all existing data.\n\nCommands\nadd client\n\nAdd a new client to the CRM.\n\n/client-project-manager add client \"[Name]\" --contact \"[email]\" --rate \"[rate]\" --notes \"[notes]\"\n\n\nStore in clients.json:\n\n{\n  \"id\": \"client-uuid\",\n  \"name\": \"Acme Corp\",\n  \"contact_email\": \"jane@acme.com\",\n  \"default_rate\": \"$100/hr\",\n  \"notes\": \"Prefers Slack for communication\",\n  \"projects\": [],\n  \"total_billed\": 0,\n  \"total_paid\": 0,\n  \"created\": \"2026-02-13\",\n  \"status\": \"active\"\n}\n\nadd project\n\nAdd a new project under a client.\n\n/client-project-manager add project \"[Name]\" --client \"[Client]\" --deadline \"[date]\" --budget \"[amount]\" --deliverables \"[list]\"\n\n\nStore in projects.json:\n\n{\n  \"id\": \"project-uuid\",\n  \"name\": \"Website Redesign\",\n  \"client_id\": \"client-uuid\",\n  \"client_name\": \"Acme Corp\",\n  \"status\": \"active\",\n  \"progress\": 0,\n  \"budget\": 5000,\n  \"billed\": 0,\n  \"deadline\": \"2026-03-15\",\n  \"created\": \"2026-02-13\",\n  \"deliverables\": [\n    { \"name\": \"Homepage mockup\", \"status\": \"pending\", \"due\": \"2026-02-20\" },\n    { \"name\": \"Inner pages\", \"status\": \"pending\", \"due\": \"2026-03-01\" },\n    { \"name\": \"Development\", \"status\": \"pending\", \"due\": \"2026-03-10\" },\n    { \"name\": \"Launch\", \"status\": \"pending\", \"due\": \"2026-03-15\" }\n  ],\n  \"notes\": [],\n  \"time_entries\": []\n}\n\nlog time\n\nLog time worked on a project.\n\n/client-project-manager log time \"[Project]\" --hours [X] --description \"[what you did]\"\n\n\nAppend to time-log.json:\n\n{\n  \"id\": \"entry-uuid\",\n  \"project_id\": \"project-uuid\",\n  \"client_id\": \"client-uuid\",\n  \"date\": \"2026-02-13\",\n  \"hours\": 3.5,\n  \"rate\": 100,\n  \"amount\": 350,\n  \"description\": \"Built responsive navigation and hero section\"\n}\n\nupdate\n\nUpdate project progress and add notes.\n\n/client-project-manager update \"[Project]\" --progress [0-100] --note \"[update]\" --deliverable \"[name]\" --status \"[done|in-progress|pending]\"\n\nstatus\n\nShow current status of all active projects.\n\nOutput format:\n\n╔══════════════════════════════════════════════════════════════╗\n║                    FREELANCE DASHBOARD                       ║\n╠══════════════════════════════════════════════════════════════╣\n\n📊 Active Projects: 3\n💰 Outstanding Invoices: $2,500\n⏰ Hours This Week: 22.5\n📅 Next Deadline: Website Redesign (Acme Corp) — Mar 15\n\n──────────────────────────────────────────────────────────────\nPROJECT: Website Redesign\nCLIENT: Acme Corp | DEADLINE: Mar 15, 2026\nPROGRESS: ████████████░░░░░░░░ 60%\nBUDGET: $3,000 / $5,000 billed\nDELIVERABLES:\n  ✅ Homepage mockup (Feb 20) — DONE\n  🔄 Inner pages (Mar 1) — IN PROGRESS\n  ⬜ Development (Mar 10) — PENDING\n  ⬜ Launch (Mar 15) — PENDING\n──────────────────────────────────────────────────────────────\n\ninvoice\n\nGenerate a professional invoice for a client.\n\n/client-project-manager invoice \"[Client]\" --project \"[Project]\" --period \"[start] to [end]\"\n\n\nGenerate the invoice as both Markdown and HTML in freelance-data/invoices/:\n\nInvoice content:\n\nINVOICE #[INV-YYYY-NNN]\nDate: [today]\nDue: [today + 14 days]\n\nFROM:\n[Your name/business — read from freelance-data/config.json if exists]\n\nTO:\n[Client name]\n[Client contact]\n\nPROJECT: [Project name]\nPERIOD: [Date range]\n\n| Date | Description | Hours | Rate | Amount |\n|------|-------------|-------|------|--------|\n| ... time entries from period ... |\n\n                              Subtotal: $X,XXX.XX\n                              Tax (0%): $0.00\n                              TOTAL DUE: $X,XXX.XX\n\nPayment Terms: Net 14\nPayment Methods: [from config.json or \"Bank Transfer / PayPal\"]\n\nThank you for your business.\n\n\nSave as freelance-data/invoices/INV-2026-001-acme-corp.md and .html.\n\nweekly-update\n\nGenerate a professional weekly client update email.\n\n/client-project-manager weekly-update \"[Client]\"\n\n\nRead the client's projects, recent time entries, and notes. Generate:\n\nSubject: Weekly Update — [Project Name] — Week of [date]\n\nHi [Contact first name],\n\nHere's your weekly update on [Project Name]:\n\n**This Week:**\n- [Completed deliverables and progress]\n- [Key decisions made]\n- [Hours worked: X.X]\n\n**Next Week:**\n- [Planned deliverables]\n- [Any blockers or decisions needed from client]\n\n**Project Status:**\n- Progress: XX%\n- Budget used: $X,XXX / $X,XXX\n- On track for [deadline]: ✅ Yes / ⚠️ At risk / ❌ Behind\n\n[Any questions or items needing client input]\n\nBest,\n[Your name]\n\n\nSave to freelance-data/updates/ and display for copy-paste.\n\npayment-reminder\n\nGenerate a polite payment reminder for overdue invoices.\n\n/client-project-manager payment-reminder \"[Client]\"\n\n\nCheck for unpaid invoices past due date. Generate appropriate reminder:\n\n1-7 days overdue: Gentle reminder\n8-14 days overdue: Firm but professional follow-up\n15+ days overdue: Final notice with late fee mention\ndashboard\n\nShow a comprehensive business overview:\n\n╔══════════════════════════════════════════════════════════════╗\n║                  MONTHLY BUSINESS REPORT                     ║\n╠══════════════════════════════════════════════════════════════╣\n\n💰 Revenue This Month:     $4,250\n💰 Revenue Last Month:     $3,800  (↑ 12%)\n📊 Active Projects:        3\n✅ Completed This Month:   1\n⏰ Hours Billed:           42.5\n💵 Effective Hourly Rate:  $100/hr\n📋 Outstanding Invoices:   $2,500 (2 invoices)\n⚠️  Overdue Invoices:      $0\n\nTOP CLIENTS (by revenue):\n  1. Acme Corp        $2,500  (59%)\n  2. StartupXYZ       $1,250  (29%)\n  3. LocalBiz         $500    (12%)\n\nUPCOMING DEADLINES:\n  Feb 20 — Homepage mockup (Acme Corp)\n  Mar 01 — Content strategy (StartupXYZ)\n  Mar 15 — Website launch (Acme Corp)\n\nconfig\n\nSet your business details for invoices and communications.\n\n/client-project-manager config --name \"Your Name\" --business \"Your Business LLC\" --email \"you@email.com\" --payment \"PayPal: you@email.com / Bank: routing XXX\"\n\n\nSave to freelance-data/config.json.\n\nData Integrity Rules\nNever overwrite — always read existing data first, modify, then write back\nAlways backup — before any write operation, check data exists and is valid JSON\nUUID generation — use timestamp-based IDs: client-[timestamp], project-[timestamp]\nDate format — always use ISO 8601: YYYY-MM-DD\nCurrency — store as numbers, display with $ formatting"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/seanwyngaard/client-project-manager",
    "publisherUrl": "https://clawhub.ai/seanwyngaard/client-project-manager",
    "owner": "seanwyngaard",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/client-project-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/client-project-manager",
    "agentUrl": "https://openagent3.xyz/skills/client-project-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/client-project-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/client-project-manager/agent.md"
  }
}