{"id":48178317,"url":"https://github.com/fioenix/huly-skill","last_synced_at":"2026-05-21T06:11:56.838Z","repository":{"id":345048766,"uuid":"1184219118","full_name":"fioenix/huly-skill","owner":"fioenix","description":"CLI tool \u0026 agent skill for Huly project management — zero-install, works with Claude Code, Cursor, and 40+ AI agents","archived":false,"fork":false,"pushed_at":"2026-04-15T06:00:37.000Z","size":4822,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-15T06:11:26.965Z","etag":null,"topics":["agent-skill","ai-agent","claude-code","cli","cursor","huly","project-management","skills","task-management"],"latest_commit_sha":null,"homepage":"https://skills.sh/fioenix/huly-skill","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fioenix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-17T11:23:00.000Z","updated_at":"2026-04-15T06:00:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fioenix/huly-skill","commit_stats":null,"previous_names":["fioenix/huly-skill"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/fioenix/huly-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fioenix%2Fhuly-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fioenix%2Fhuly-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fioenix%2Fhuly-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fioenix%2Fhuly-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fioenix","download_url":"https://codeload.github.com/fioenix/huly-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fioenix%2Fhuly-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33290928,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"last_error":"SSL_read: 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":["agent-skill","ai-agent","claude-code","cli","cursor","huly","project-management","skills","task-management"],"created_at":"2026-04-04T17:40:28.736Z","updated_at":"2026-05-21T06:11:56.832Z","avatar_url":"https://github.com/fioenix.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Huly Assist\n\nA CLI tool and [agent skill](https://agentskills.io) for managing tasks, projects, labels, documents, and milestones in [Huly](https://huly.io) — built on the official [`@hcengineering/api-client`](https://github.com/hcengineering/huly-examples).\n\nWorks with Claude Code, Cursor, OpenCode, and any agent supporting the [Agent Skills](https://github.com/vercel-labs/skills) ecosystem.\n\n## Install as Agent Skill\n\n```bash\nnpx skills add fioenix/huly-skill\n```\n\nOr manually (zero-install — no `npm install` needed):\n```bash\ngit clone https://github.com/fioenix/huly-skill.git\ncd huly-skill\n```\n\n## Setup\n\nSet these environment variables before using any command:\n\n```bash\nexport HULY_HOST=\"https://huly.app\"\nexport HULY_WORKSPACE_ID=\"your-workspace-uuid\"\nexport HULY_API_KEY=\"your-api-token\"\n```\n\n- **HULY_HOST**: Your Huly instance URL\n- **HULY_WORKSPACE_ID**: Found in Huly Settings \u003e Workspace\n- **HULY_API_KEY**: Create at Huly Settings \u003e API Tokens\n\n### Verify\n\n```bash\n./bin/huly.cjs whoami\n```\n\n## Usage\n\n### Tasks\n```bash\nhuly tasks --assignee me              # My tasks\nhuly tasks --project DELTA --overdue  # Overdue in project\nhuly task DELTA-123                   # Task details\nhuly create task \"Title\" --project DELTA --priority HIGH --due tomorrow\nhuly update task DELTA-123 --status \"Done\" --add-comment \"Completed\"\nhuly delete task DELTA-123 --yes      # Requires confirmation\n```\n\n### Reports\n```bash\nhuly report daily --assignee me       # Today's summary\nhuly report weekly                    # Week summary\n```\n\n### Labels\n```bash\nhuly labels list                      # All labels\nhuly labels create \"bug\" --color 3    # Create label\nhuly labels assign DELTA-123 \u003cid\u003e     # Assign to task\nhuly labels show DELTA-123            # Show task labels\n```\n\n### Documents\n```bash\nhuly docs teamspaces                  # List teamspaces\nhuly docs list \"My Documents\"         # List docs\nhuly docs read \"My Documents\" \"Notes\" # Read as markdown\nhuly docs create \"Title\" -t \"My Documents\" --file ./content.md\nhuly docs create-teamspace \"Engineering\"\n```\n\n### Milestones\n```bash\nhuly milestones list --project DELTA\nhuly milestones create \"Sprint 1\" --project DELTA --target 2026-04-15\nhuly milestones complete \u003cid\u003e --project DELTA\n```\n\n### JSON Mode\n\nAppend `--json` to any command for structured output:\n```bash\nhuly tasks --assignee me --json\n```\n\n## MCP Server\n\nBesides the CLI skill, the same Huly operations are exposed as an **MCP server** — a better fit for Claude Cowork and any MCP-capable client. It is published to npm as [`@fioenix/huly-mcp`](https://www.npmjs.com/package/@fioenix/huly-mcp) and runs via `npx` with no install step.\n\nA single entry point picks its transport from `HULY_MCP_TRANSPORT` (`stdio` default, or `http`). The server is **single-workspace**: one set of Huly credentials, shared by all callers.\n\n### stdio (local — Claude Code / Desktop)\n\n```json\n{\n  \"mcpServers\": {\n    \"huly\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@fioenix/huly-mcp@latest\"],\n      \"env\": {\n        \"HULY_MCP_TRANSPORT\": \"stdio\",\n        \"HULY_HOST\": \"https://huly.app\",\n        \"HULY_WORKSPACE_ID\": \"your-workspace-uuid\",\n        \"HULY_API_KEY\": \"your-api-token\"\n      }\n    }\n  }\n}\n```\n\n### HTTP (remote — Claude Cowork)\n\n```bash\nHULY_MCP_TRANSPORT=http \\\nHULY_HOST=https://huly.app \\\nHULY_WORKSPACE_ID=your-workspace-uuid \\\nHULY_API_KEY=your-api-token \\\nHULY_MCP_AUTH_TOKEN=your-shared-secret \\\nnpx -y @fioenix/huly-mcp@latest\n```\n\nServes `POST /mcp` (default port 3000, override with `PORT`) and `GET /health`. When `HULY_MCP_AUTH_TOKEN` is set, callers must send `Authorization: Bearer \u003ctoken\u003e` — because the server holds Huly credentials, always set it for any non-local deployment.\n\nBuilding from source instead of npm: `pnpm build` produces `bin/mcp.cjs` (run with `node bin/mcp.cjs`). See [`npm-package/`](./npm-package) for the published package.\n\n## For AI Agents\n\nSee [AGENTS.md](./AGENTS.md) for the full agent integration guide, or [skills/huly-skill/SKILL.md](./skills/huly-skill/SKILL.md) for the skill definition.\n\n## Technical Notes\n\nAll dependencies are bundled into a single `dist/bundle.cjs` via esbuild — no `npm install` or GitHub PAT required. The `@hcengineering/api-client` expects browser APIs (`indexedDB`, `window`), which are polyfilled automatically.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffioenix%2Fhuly-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffioenix%2Fhuly-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffioenix%2Fhuly-skill/lists"}