{"id":50844569,"url":"https://github.com/godaddy/nodejs-hosting-agent-skill","last_synced_at":"2026-06-14T08:33:49.079Z","repository":{"id":360721769,"uuid":"1251192016","full_name":"godaddy/nodejs-hosting-agent-skill","owner":"godaddy","description":"Open-source Agent Skill (godaddy-nodejs-hosting) to build, adapt, and validate Node.js apps for GoDaddy Node.js Hosting before upload.","archived":false,"fork":false,"pushed_at":"2026-06-05T16:19:08.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-14T08:33:46.007Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/godaddy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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-05-27T10:33:27.000Z","updated_at":"2026-06-05T16:19:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/godaddy/nodejs-hosting-agent-skill","commit_stats":null,"previous_names":["godaddy/nodejs-hosting-agent-skill"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/godaddy/nodejs-hosting-agent-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godaddy%2Fnodejs-hosting-agent-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godaddy%2Fnodejs-hosting-agent-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godaddy%2Fnodejs-hosting-agent-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godaddy%2Fnodejs-hosting-agent-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/godaddy","download_url":"https://codeload.github.com/godaddy/nodejs-hosting-agent-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godaddy%2Fnodejs-hosting-agent-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34315072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-06-14T08:33:48.983Z","updated_at":"2026-06-14T08:33:49.074Z","avatar_url":"https://github.com/godaddy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoDaddy Node.js Hosting - Agent Skill\n\nOpen source [Agent Skill](https://agentskills.io/home) for building and adapting Node.js apps on [GoDaddy Node.js Hosting (PaaS)](https://godaddy.com/nodejs).\n\nSupports **npm**, **pnpm**, and **yarn**.\n\n**Repository:** [github.com/godaddy/nodejs-hosting-agent-skill](https://github.com/godaddy/nodejs-hosting-agent-skill) - the repo ships tests and docs. The installable skill is **`skills/godaddy-nodejs-hosting`** (skill id: `godaddy-nodejs-hosting`).\n\n## Quick start\n\n1. **Install the skill** - see [docs/INSTALL.md](docs/INSTALL.md):\n   ```bash\n   npx skills add godaddy/nodejs-hosting-agent-skill\n   ```\n   **Claude Code:** enable **Claude Code** in the installer's agent picker (easy to miss), or:\n   ```bash\n   npx skills add godaddy/nodejs-hosting-agent-skill --skill godaddy-nodejs-hosting -g -a claude-code\n   ```\n   Or symlink / marketplace when listed.\n2. Open your **app** folder in your editor of choice (not this repo).\n3. Invoke **`/godaddy-nodejs-hosting`** (Claude) or **`@godaddy-nodejs-hosting`** (Cursor) and ask it to prepare the project for Node.js Hosting (build or adapt).\n4. Validate before upload (optional; requires Node.js):\n   ```bash\n   npm run validate -- /path/to/your-app\n   ```\n\nThe skill includes workflows for new apps and existing repos, framework recipes, and a deploy contract enforced by `validate-paas.mjs`.\n\n## Using Without Agent Skills\n\nIf your tool does not support Agent Skills (e.g. Claude.ai or a generic chat), copy [CLAUDE.md](CLAUDE.md) into your app’s project root and ask the model to follow it.\n\n## Repository layout\n\n```\n├── skills/\n│   └── godaddy-nodejs-hosting/   # Install this skill (Agent Skills standard layout)\n│       ├── SKILL.md\n│       ├── contract.md\n│       ├── examples.md\n│       └── scripts/validate-paas.mjs\n├── CLAUDE.md                     # Optional copy-into-app guide (non-skill tools)\n├── docs/INSTALL.md\n├── tests/                        # Fixtures + automated tests\n└── package.json                  # Maintainer scripts (npm test, npm run validate)\n```\n\n## Local testing\n\n```bash\nnpm test\nnpm run validate -- tests/fixtures/express\n```\n\nSee [docs/INSTALL.md](docs/INSTALL.md) to install. Maintainers: [docs/CONTRIBUTING-SKILL.md](docs/CONTRIBUTING-SKILL.md) for E2E test layers.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) and [docs/CONTRIBUTING-SKILL.md](docs/CONTRIBUTING-SKILL.md).\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgodaddy%2Fnodejs-hosting-agent-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgodaddy%2Fnodejs-hosting-agent-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgodaddy%2Fnodejs-hosting-agent-skill/lists"}