{"id":42026112,"url":"https://github.com/pleaseai/asana","last_synced_at":"2026-01-26T04:09:13.831Z","repository":{"id":320585066,"uuid":"1082576345","full_name":"pleaseai/asana","owner":"pleaseai","description":"asana","archived":false,"fork":false,"pushed_at":"2025-10-24T16:31:39.000Z","size":903,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-24T17:19:56.285Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://asana-pied.vercel.app","language":"TypeScript","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/pleaseai.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":"2025-10-24T12:56:29.000Z","updated_at":"2025-10-24T16:31:20.000Z","dependencies_parsed_at":"2025-10-24T17:32:22.868Z","dependency_job_id":null,"html_url":"https://github.com/pleaseai/asana","commit_stats":null,"previous_names":["pleaseai/asana"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/pleaseai/asana","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fasana","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fasana/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fasana/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fasana/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pleaseai","download_url":"https://codeload.github.com/pleaseai/asana/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pleaseai%2Fasana/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28766486,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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-01-26T04:09:13.277Z","updated_at":"2026-01-26T04:09:13.824Z","avatar_url":"https://github.com/pleaseai.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Asana CLI\n\n[![CI](https://github.com/pleaseai/asana/actions/workflows/ci.yml/badge.svg)](https://github.com/pleaseai/asana/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/gh/pleaseai/asana/branch/main/graph/badge.svg)](https://codecov.io/gh/pleaseai/asana)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nManage your Asana tasks efficiently from the command line.\n\n\u003e **English** | [한국어](./README.ko.md)\n\n## Features\n\n- ✅ OAuth 2.0 and Personal Access Token authentication\n- ✅ Create, list, complete, and delete tasks\n- ✅ Automatic token refresh (OAuth)\n- ✅ Default workspace configuration\n- ✅ Fast execution powered by Bun\n- ✨ **Multiple output formats** (TOON, JSON, Plain) for different use cases\n\n## Quick Installation\n\n### Homebrew (macOS/Linux - Recommended)\n\n```bash\nbrew install pleaseai/tap/asana-cli\n```\n\n### Install Script (All Platforms)\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/pleaseai/asana/main/scripts/install.sh | bash\n```\n\n**Note:** Add `~/.local/bin` to your PATH if needed.\n\n### From Source\n\n```bash\ngit clone https://github.com/pleaseai/asana.git\ncd asana\nbun install\nbun run dev --help\n```\n\n## Quick Start\n\n### Authenticate\n\n```bash\n# Using Personal Access Token (recommended)\nasana auth login --token YOUR_TOKEN\n\n# Using OAuth 2.0\nasana auth login\n```\n\n### Manage Tasks\n\n```bash\n# Create a task\nasana task create -n \"New task\" -w WORKSPACE_ID\n\n# List your tasks\nasana task list -a me -w WORKSPACE_ID\n\n# Complete a task\nasana task complete TASK_ID\n```\n\n### Output Formats\n\nChoose output format based on your needs:\n\n```bash\n# TOON format (default) - 30-60% more token-efficient for LLMs\nasana task list -a me\n\n# JSON format - for scripts and automation\nasana task list -a me --format json\n\n# Plain format - traditional human-readable output\nasana task list -a me --format plain\n```\n\n**Format Comparison:**\n\n| Format    | Use Case                          | Token Efficiency | Machine Readable |\n| --------- | --------------------------------- | ---------------- | ---------------- |\n| **TOON**  | LLM interactions, sharing outputs | ⭐⭐⭐⭐⭐       | ✅               |\n| **JSON**  | Scripts, automation, parsing      | ⭐⭐⭐           | ✅               |\n| **Plain** | Terminal viewing, traditional CLI | ⭐⭐             | ❌               |\n\n\u003cdetails\u003e\n\u003csummary\u003e📊 Example Outputs\u003c/summary\u003e\n\n**TOON Format** (default):\n\n```\ntasks[3]{gid,name,completed}:\n  \"1234567890\",Setup authentication,true\n  \"1234567891\",Add task commands,false\n  \"1234567892\",Write documentation,false\n```\n\n**JSON Format**:\n\n```json\n{\n  \"tasks\": [\n    { \"gid\": \"1234567890\", \"name\": \"Setup authentication\", \"completed\": true },\n    { \"gid\": \"1234567891\", \"name\": \"Add task commands\", \"completed\": false },\n    { \"gid\": \"1234567892\", \"name\": \"Write documentation\", \"completed\": false }\n  ]\n}\n```\n\n**Plain Format**:\n\n```\nTasks (3):\n\n✓ 1234567890 - Setup authentication\n○ 1234567891 - Add task commands\n○ 1234567892 - Write documentation\n```\n\n\u003c/details\u003e\n\n## Documentation\n\n**[📖 Full Documentation](https://asana.pleaseai.dev/)**\n\n- [Getting Started](https://asana.pleaseai.dev/en/guide/getting-started) - Installation and setup\n- [Quick Start](https://asana.pleaseai.dev/en/guide/quick-start) - Basic commands and workflows\n- [Authentication](https://asana.pleaseai.dev/en/features/authentication) - OAuth and PAT setup\n- [Task Management](https://asana.pleaseai.dev/en/features/task-management) - Full task operations\n- [Configuration](https://asana.pleaseai.dev/en/features/configuration) - Advanced settings\n\n## Updating\n\n### Homebrew\n\n```bash\nbrew upgrade asana-cli\n```\n\n### Install Script\n\n```bash\nasana self-update\n```\n\n## Development\n\n```bash\n# Clone and install\ngit clone https://github.com/pleaseai/asana.git\ncd asana\nbun install\n\n# Run in development mode\nbun run dev auth login --token YOUR_TOKEN\n\n# Run tests\nbun test\n\n# Build executable\nbun run build\n```\n\nFor detailed development guides, see [dev-docs/](./dev-docs/).\n\n## Tech Stack\n\n- **Runtime**: [Bun](https://bun.sh)\n- **SDK**: [Asana Node.js SDK](https://github.com/Asana/node-asana)\n- **CLI Framework**: [Commander.js](https://github.com/tj/commander.js)\n- **Output Format**: [TOON](https://github.com/johannschopplich/toon) - Token-efficient format for LLMs\n- **Styling**: [Chalk](https://github.com/chalk/chalk)\n\n## License\n\nMIT\n\n## Author\n\nMinsu Lee ([@amondnet](https://github.com/amondnet))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpleaseai%2Fasana","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpleaseai%2Fasana","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpleaseai%2Fasana/lists"}