{
  "schemaVersion": "1.0",
  "item": {
    "slug": "no-nonsense-tasks",
    "name": "Tasks Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dvjn/no-nonsense-tasks",
    "canonicalUrl": "https://clawhub.ai/dvjn/no-nonsense-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/no-nonsense-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=no-nonsense-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AGENT.md",
      "README.md",
      "SKILL.md",
      "migrations/001_initial_schema.sql",
      "mise.toml",
      "scripts/init_db.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/no-nonsense-tasks"
    },
    "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/no-nonsense-tasks",
    "agentPageUrl": "https://openagent3.xyz/skills/no-nonsense-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/no-nonsense-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/no-nonsense-tasks/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "No Nonsense Tasks",
        "body": "Simple SQLite-backed task tracking. No fluff, no complexity, just tasks that get done."
      },
      {
        "title": "Prerequisites",
        "body": "sqlite3 CLI tool must be installed"
      },
      {
        "title": "Quick Start",
        "body": "Initialize the database:\n\n./scripts/init_db.sh\n\nAdd your first task:\n\n./scripts/task_add.sh \"Build task tracker skill\" \\\n  --description \"Create a SQLite-based task manager\" \\\n  --tags \"work,urgent\" \\\n  --status todo\n\nList all tasks:\n\n./scripts/task_list.sh"
      },
      {
        "title": "Task Statuses",
        "body": "Tasks flow through four statuses:\n\nbacklog - Ideas and future tasks\ntodo - Ready to work on\nin-progress - Currently being worked on\ndone - Completed tasks"
      },
      {
        "title": "Initialize Database",
        "body": "./scripts/init_db.sh\n\nDefault location: ~/.no-nonsense/tasks.db\nOverride with: export NO_NONSENSE_TASKS_DB=/path/to/tasks.db"
      },
      {
        "title": "Add Task",
        "body": "./scripts/task_add.sh <title> [options]\n\nOptions:\n\n-d, --description TEXT - Task description\n-t, --tags TAGS - Comma-separated tags\n-s, --status STATUS - Task status (default: backlog)\n\nExample:\n\n./scripts/task_add.sh \"Deploy to prod\" --description \"Deploy v2.0\" --tags \"deploy,critical\" --status todo"
      },
      {
        "title": "List Tasks",
        "body": "./scripts/task_list.sh [--status STATUS]\n\nExamples:\n\n./scripts/task_list.sh              # All tasks\n./scripts/task_list.sh --status todo"
      },
      {
        "title": "Show Task Details",
        "body": "./scripts/task_show.sh <task_id>"
      },
      {
        "title": "Move Task to Different Status",
        "body": "./scripts/task_move.sh <task_id> --status <STATUS>\n\nExample:\n\n./scripts/task_move.sh 7 --status in-progress"
      },
      {
        "title": "Update Task Fields",
        "body": "./scripts/task_update.sh <task_id> [options]\n\nOptions:\n\n--title TEXT - Update title\n-d, --description TEXT - Update description\n-t, --tags TAGS - Update tags (comma-separated)\n-s, --status STATUS - Update status"
      },
      {
        "title": "Update Tags (Shortcut)",
        "body": "./scripts/task_tag.sh <task_id> --tags <TAGS>\n\nExample:\n\n./scripts/task_tag.sh 8 --tags \"urgent,bug,frontend\""
      },
      {
        "title": "Filter by Tag",
        "body": "./scripts/task_filter.sh <tag>"
      },
      {
        "title": "Delete Task",
        "body": "./scripts/task_delete.sh <task_id>"
      },
      {
        "title": "View Statistics",
        "body": "./scripts/task_stats.sh\n\nShows count of tasks by status and total."
      },
      {
        "title": "Usage Tips",
        "body": "Typical workflow:\n\nAdd new ideas to backlog: task_add.sh \"Task idea\" --status backlog\nMove tasks to todo when ready: task_move.sh <id> --status todo\nStart work: task_move.sh <id> --status in-progress\nComplete: task_move.sh <id> --status done\n\nTag organization:\n\nUse tags for categories: work, personal, urgent, bug, feature\nCombine tags: urgent,work,api or personal,home,shopping\nFilter by any tag: task_filter.sh urgent\n\nStatus filtering:\n\nFocus on current work: task_list.sh --status in-progress\nPlan your day: task_list.sh --status todo\nReview completed: task_list.sh --status done"
      }
    ],
    "body": "No Nonsense Tasks\n\nSimple SQLite-backed task tracking. No fluff, no complexity, just tasks that get done.\n\nPrerequisites\nsqlite3 CLI tool must be installed\nQuick Start\n\nInitialize the database:\n\n./scripts/init_db.sh\n\n\nAdd your first task:\n\n./scripts/task_add.sh \"Build task tracker skill\" \\\n  --description \"Create a SQLite-based task manager\" \\\n  --tags \"work,urgent\" \\\n  --status todo\n\n\nList all tasks:\n\n./scripts/task_list.sh\n\nTask Statuses\n\nTasks flow through four statuses:\n\nbacklog - Ideas and future tasks\ntodo - Ready to work on\nin-progress - Currently being worked on\ndone - Completed tasks\nCommands\nInitialize Database\n./scripts/init_db.sh\n\n\nDefault location: ~/.no-nonsense/tasks.db\nOverride with: export NO_NONSENSE_TASKS_DB=/path/to/tasks.db\n\nAdd Task\n./scripts/task_add.sh <title> [options]\n\n\nOptions:\n\n-d, --description TEXT - Task description\n-t, --tags TAGS - Comma-separated tags\n-s, --status STATUS - Task status (default: backlog)\n\nExample:\n\n./scripts/task_add.sh \"Deploy to prod\" --description \"Deploy v2.0\" --tags \"deploy,critical\" --status todo\n\nList Tasks\n./scripts/task_list.sh [--status STATUS]\n\n\nExamples:\n\n./scripts/task_list.sh              # All tasks\n./scripts/task_list.sh --status todo\n\nShow Task Details\n./scripts/task_show.sh <task_id>\n\nMove Task to Different Status\n./scripts/task_move.sh <task_id> --status <STATUS>\n\n\nExample:\n\n./scripts/task_move.sh 7 --status in-progress\n\nUpdate Task Fields\n./scripts/task_update.sh <task_id> [options]\n\n\nOptions:\n\n--title TEXT - Update title\n-d, --description TEXT - Update description\n-t, --tags TAGS - Update tags (comma-separated)\n-s, --status STATUS - Update status\nUpdate Tags (Shortcut)\n./scripts/task_tag.sh <task_id> --tags <TAGS>\n\n\nExample:\n\n./scripts/task_tag.sh 8 --tags \"urgent,bug,frontend\"\n\nFilter by Tag\n./scripts/task_filter.sh <tag>\n\nDelete Task\n./scripts/task_delete.sh <task_id>\n\nView Statistics\n./scripts/task_stats.sh\n\n\nShows count of tasks by status and total.\n\nUsage Tips\n\nTypical workflow:\n\nAdd new ideas to backlog: task_add.sh \"Task idea\" --status backlog\nMove tasks to todo when ready: task_move.sh <id> --status todo\nStart work: task_move.sh <id> --status in-progress\nComplete: task_move.sh <id> --status done\n\nTag organization:\n\nUse tags for categories: work, personal, urgent, bug, feature\nCombine tags: urgent,work,api or personal,home,shopping\nFilter by any tag: task_filter.sh urgent\n\nStatus filtering:\n\nFocus on current work: task_list.sh --status in-progress\nPlan your day: task_list.sh --status todo\nReview completed: task_list.sh --status done"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dvjn/no-nonsense-tasks",
    "publisherUrl": "https://clawhub.ai/dvjn/no-nonsense-tasks",
    "owner": "dvjn",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/no-nonsense-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/no-nonsense-tasks",
    "agentUrl": "https://openagent3.xyz/skills/no-nonsense-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/no-nonsense-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/no-nonsense-tasks/agent.md"
  }
}