{"id":39835927,"url":"https://github.com/freenet/freenet-agent-skills","last_synced_at":"2026-01-18T13:21:50.645Z","repository":{"id":332163636,"uuid":"1132955769","full_name":"freenet/freenet-agent-skills","owner":"freenet","description":"AI coding agent skills for building applications on Freenet","archived":false,"fork":false,"pushed_at":"2026-01-12T18:04:23.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T23:04:09.410Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/freenet.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":null,"dco":null,"cla":null}},"created_at":"2026-01-12T17:21:24.000Z","updated_at":"2026-01-12T18:04:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/freenet/freenet-agent-skills","commit_stats":null,"previous_names":["freenet/freenet-agent-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/freenet/freenet-agent-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freenet%2Ffreenet-agent-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freenet%2Ffreenet-agent-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freenet%2Ffreenet-agent-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freenet%2Ffreenet-agent-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/freenet","download_url":"https://codeload.github.com/freenet/freenet-agent-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freenet%2Ffreenet-agent-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28536751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T13:04:05.990Z","status":"ssl_error","status_checked_at":"2026-01-18T13:01:44.092Z","response_time":98,"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-18T13:21:49.311Z","updated_at":"2026-01-18T13:21:50.641Z","avatar_url":"https://github.com/freenet.png","language":null,"funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# Freenet Agent Skills\n\nAI coding agent skills for building applications on Freenet. Compatible with [Claude Code](https://claude.ai/code) and [OpenCode](https://opencode.ai/).\n\n## Available Skills\n\n### [dapp-builder](./skills/dapp-builder/)\n\nBuild decentralized applications on Freenet. Guides through:\n1. Designing contracts (shared, replicated state)\n2. Implementing delegates (private, local state)\n3. Building the UI (WebSocket connection to Freenet)\n\nBased on [River](https://github.com/freenet/river), a decentralized chat application.\n\n### [pr-creation](./skills/pr-creation/)\n\nGuidelines for creating high-quality Freenet pull requests. Includes:\n- Four parallel review subagents (code-first, testing, skeptical, big-picture)\n- Big-picture review catches \"CI chasing\" anti-patterns\n- Test quality standards and regression prevention\n- Worktree-based workflow\n\n### [systematic-debugging](./skills/systematic-debugging/)\n\nMethodology for debugging non-trivial problems:\n- Hypothesis formation before code changes\n- Parallel investigation with subagents\n- Anti-patterns to avoid (jumping to conclusions, weakening tests)\n- Test coverage gap analysis\n\n## Installation\n\n### Claude Code (Recommended)\n\nAdd the marketplace:\n\n```bash\n/plugin marketplace add freenet/freenet-agent-skills\n```\n\nThen install the plugin you need:\n\n```bash\n# For building apps on Freenet\n/plugin install freenet-dapp-builder\n\n# For contributing to Freenet core\n/plugin install freenet-core-dev\n```\n\nOr browse available plugins via `/plugin` → **Discover** tab.\n\n### Manual Installation\n\n**Option 1: Copy individual skills**\n```bash\ngit clone https://github.com/freenet/freenet-agent-skills.git\ncp -r freenet-agent-skills/skills/dapp-builder ~/.claude/skills/\n```\n\n**Option 2: Symlink** (easier to update)\n```bash\ngit clone https://github.com/freenet/freenet-agent-skills.git ~/freenet-agent-skills\nln -s ~/freenet-agent-skills/skills/dapp-builder ~/.claude/skills/\n```\n\n### OpenCode\n\nOpenCode automatically discovers skills from Claude-compatible paths:\n\n```bash\ngit clone https://github.com/freenet/freenet-agent-skills.git ~/freenet-agent-skills\nln -s ~/freenet-agent-skills/skills/dapp-builder ~/.claude/skills/\nln -s ~/freenet-agent-skills/skills/pr-creation ~/.claude/skills/\nln -s ~/freenet-agent-skills/skills/systematic-debugging ~/.claude/skills/\n```\n\n### Project-specific Installation\n\nTo include a skill in a specific project (shared with team):\n\n```bash\nmkdir -p .claude/skills\ncp -r freenet-agent-skills/skills/dapp-builder .claude/skills/\ngit add .claude/skills\n```\n\n**Verify installation:**\nAsk your AI agent: \"What skills are available?\" - it should list the installed skills.\n\n## Repository Structure\n\n```\nfreenet-agent-skills/\n├── .claude-plugin/\n│   └── marketplace.json   # Claude Code marketplace manifest\n├── skills/\n│   ├── dapp-builder/\n│   │   ├── SKILL.md       # Main skill definition\n│   │   ├── README.md      # Skill documentation\n│   │   └── references/    # Detailed documentation\n│   ├── pr-creation/\n│   │   └── SKILL.md\n│   └── systematic-debugging/\n│       └── SKILL.md\n├── README.md\n└── LICENSE\n```\n\n## Contributing\n\nSkills follow the structure:\n\n```\nskill-name/\n├── SKILL.md           # Main instructions (required, with YAML frontmatter)\n└── references/        # Detailed documentation loaded on-demand (optional)\n```\n\nSKILL.md files require YAML frontmatter:\n\n```yaml\n---\nname: skill-name          # Must match directory name\ndescription: Brief description of what the skill does\nlicense: LGPL-3.0         # Optional\n---\n```\n\n## License\n\nLGPL-3.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreenet%2Ffreenet-agent-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreenet%2Ffreenet-agent-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreenet%2Ffreenet-agent-skills/lists"}