{"id":43955239,"url":"https://github.com/robzolkos/fizzy-skill","last_synced_at":"2026-02-07T04:33:03.734Z","repository":{"id":331061601,"uuid":"1114768340","full_name":"robzolkos/fizzy-skill","owner":"robzolkos","description":"Agent SKILL for Claude Code and Opencode and others.","archived":false,"fork":false,"pushed_at":"2026-01-21T02:17:44.000Z","size":26,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-21T13:46:16.881Z","etag":null,"topics":["claude-code","opencode","skill"],"latest_commit_sha":null,"homepage":"","language":null,"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/robzolkos.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-12-11T21:24:17.000Z","updated_at":"2026-01-21T02:18:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/robzolkos/fizzy-skill","commit_stats":null,"previous_names":["robzolkos/fizzy-skill"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/robzolkos/fizzy-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robzolkos%2Ffizzy-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robzolkos%2Ffizzy-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robzolkos%2Ffizzy-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robzolkos%2Ffizzy-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robzolkos","download_url":"https://codeload.github.com/robzolkos/fizzy-skill/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robzolkos%2Ffizzy-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29186738,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T03:35:06.566Z","status":"ssl_error","status_checked_at":"2026-02-07T03:34:57.604Z","response_time":63,"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":["claude-code","opencode","skill"],"created_at":"2026-02-07T04:33:03.088Z","updated_at":"2026-02-07T04:33:03.715Z","avatar_url":"https://github.com/robzolkos.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# No longer maintained - the SKILL is moved into the Fizzy CLI project https://github.com/robzolkos/fizzy-cli\n\n# Agent Skill for Fizzy\n\nA skill that enables natural language management of [Fizzy](https://fizzy.do) boards, cards, and tasks directly from your terminal. Works with both [Claude Code](https://docs.anthropic.com/en/docs/claude-code/skills) and [OpenCode](https://opencode.ai/docs/skills.md).\n\n## What is Fizzy?\n\n[Fizzy](https://fizzy.do) is a task and project management application. This skill allows your AI coding assistant to interact with your Fizzy workspace using the `fizzy` CLI.\n\n## Prerequisites\n\n- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) or [OpenCode](https://opencode.ai) installed\n- [Fizzy CLI](https://github.com/robzolkos/fizzy-cli) installed and authenticated\n\n## Installation\n\nThe easiest way to install this skill is using the Fizzy CLI's built-in command:\n\n```bash\nfizzy skill\n```\n\nThis will automatically install the skill to the correct location for both Claude Code (`~/.claude/skills/`) and OpenCode (`~/.config/opencode/skills/`).\n\n### Manual Installation\n\nAlternatively, copy the `fizzy` folder to your skills directory:\n\n**For Claude Code:**\n```bash\ncp -r fizzy ~/.claude/skills/\n```\n\n**For OpenCode:**\n```bash\ncp -r fizzy ~/.config/opencode/skills/\n```\n\n## Authentication\n\nBefore using the skill, authenticate with your Fizzy account:\n\n```bash\nfizzy auth login YOUR_API_TOKEN\n```\n\nYou can verify your authentication status:\n\n```bash\nfizzy auth status\n```\n\n## Example Commands\n\nOnce installed, you can use natural language to manage your Fizzy tasks:\n\n### Viewing Your Work\n\n```\nShow me all my boards\n```\n\n```\nList open cards on the Engineering board\n```\n\n```\nWhat tasks are assigned to me?\n```\n\n### Creating Cards\n\n```\nCreate a new card on the Product board titled \"Update login page design\"\n```\n\n```\nAdd a card to Engineering with title \"Fix authentication bug\" and description \"Users are being logged out unexpectedly\"\n```\n\n### Managing Cards\n\n```\nClose card #42\n```\n\n```\nMove card #15 to the \"In Progress\" column\n```\n\n```\nAdd the tag \"urgent\" to card #23\n```\n\n```\nPostpone card #8 for later\n```\n\n### Working with Steps (To-dos)\n\n```\nAdd a checklist to card #12 with steps: \"Write tests\", \"Update documentation\", \"Deploy to staging\"\n```\n\n```\nMark the first step on card #12 as completed\n```\n\n### Comments and Collaboration\n\n```\nAdd a comment to card #5 saying \"Ready for review\"\n```\n\n```\nAssign card #30 to user ID 123\n```\n\n### Notifications\n\n```\nShow my notifications\n```\n\n```\nMark all notifications as read\n```\n\n## Documentation\n\n- [Claude Code Skills Documentation](https://docs.anthropic.com/en/docs/claude-code/skills)\n- [OpenCode Skills Documentation](https://opencode.ai/docs/skills.md)\n- [Fizzy](https://fizzy.do)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobzolkos%2Ffizzy-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobzolkos%2Ffizzy-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobzolkos%2Ffizzy-skill/lists"}