{"id":44829731,"url":"https://github.com/ackness/task-notes","last_synced_at":"2026-02-19T01:00:33.007Z","repository":{"id":338368362,"uuid":"1156229451","full_name":"ackness/task-notes","owner":"ackness","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-12T12:23:18.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-17T04:40:24.706Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ackness.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-12T12:12:57.000Z","updated_at":"2026-02-12T12:23:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ackness/task-notes","commit_stats":null,"previous_names":["ackness/task-notes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ackness/task-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackness%2Ftask-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackness%2Ftask-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackness%2Ftask-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackness%2Ftask-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ackness","download_url":"https://codeload.github.com/ackness/task-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackness%2Ftask-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29563256,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-16T23:52:09.444Z","updated_at":"2026-02-18T00:00:41.159Z","avatar_url":"https://github.com/ackness.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# task-notes\n\n[PyPI](https://pypi.org/project/task-notes/) | [GitHub](https://github.com/ackness/task-notes) | [中文文档](https://github.com/ackness/task-notes/blob/main/docs/README.zh-CN.md)\n\n`task-notes` is an LLM/agent-friendly task CLI that stores project plans in Markdown checklists.\n\nIt supports nested task trees, selector-based operations (`1`, `1.2`, `2.1.3`), rich terminal output, and machine-safe JSON mode.\n\n## Install\n\nFrom PyPI:\n\n```bash\npip install task-notes\n```\n\nWith uvx (no global install):\n\n```bash\nuvx --from task-notes task --help\n```\n\nInstall as a global tool with uv:\n\n```bash\nuv tool install task-notes\ntask --help\n```\n\n## Quick Start\n\n```bash\ntask new app-redesign \"Clarify scope\" \"Implement features\" \"Ship\"\ntask add app-redesign --parent 2 \"Implement ls/show output\"\ntask show app-redesign\ntask next app-redesign\ntask check app-redesign --path 1\ntask edit app-redesign --path 2.1 \"Implement ls/show/tree output\"\n```\n\n## Commands\n\n```bash\ntask ls [--json]\ntask show \u003cproject\u003e [--json]\ntask next \u003cproject\u003e [--json]\ntask new \u003cproject\u003e \u003ccontent...\u003e [--json]\ntask add \u003cproject\u003e [--parent \u003cselector\u003e] \u003ccontent...\u003e [--json]\ntask edit \u003cproject\u003e --path \u003cselector\u003e \u003ccontent\u003e [--json]\ntask edit \u003cproject\u003e -i [--json]\ntask del \u003cproject\u003e --path \u003cselector\u003e [--json]\ntask rm \u003cproject\u003e [--json]\ntask check \u003cproject\u003e --path \u003cselector\u003e [--json]\ntask uncheck \u003cproject\u003e --path \u003cselector\u003e [--json]\ntask toggle \u003cproject\u003e --path \u003cselector\u003e [--json]\ntask version [--json]\n```\n\n## Data Directory and Safety\n\n- Default tasks directory: `~/.task-notes`\n- You can override with `--tasks-dir \u003cpath\u003e`\n- Non-default directories are blocked by default\n- To allow a non-default directory, explicitly add:\n\n```bash\n--unsafe-external-dir\n```\n\nExample:\n\n```bash\ntask --unsafe-external-dir --tasks-dir ./tasks ls\n```\n\n## Interactive Edit\n\n```bash\ntask edit \u003cproject\u003e -i\n```\n\nKeys:\n\n- `Up/Down` or `j/k`: move cursor\n- `Space`: select target task\n- `Enter`: confirm selection\n- `q` or `Esc`: cancel\n\n## JSON Output (Recommended for Tools/LLMs)\n\n```bash\ntask show app-redesign --json\n```\n\nIn automation, prefer `--json` to avoid parsing terminal formatting.\n\n## Development\n\nRun tests:\n\n```bash\nuv run python -m unittest discover -s tests -p 'test_*.py' -v\n```\n\nBuild and check package:\n\n```bash\nuv build\nuvx twine check dist/*\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fackness%2Ftask-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fackness%2Ftask-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fackness%2Ftask-notes/lists"}