{"id":29806318,"url":"https://github.com/neno-is-ooo/claudify","last_synced_at":"2025-11-03T10:02:00.948Z","repository":{"id":304162475,"uuid":"1018002380","full_name":"neno-is-ooo/claudify","owner":"neno-is-ooo","description":"Use Claude Code as an LLM provider with your subscription flat fee instead of pay-per-token API keys","archived":false,"fork":false,"pushed_at":"2025-07-11T13:28:56.000Z","size":0,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-11T14:02:11.512Z","etag":null,"topics":["claude","claude-code","llm","sdk","typescript"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/claudify","language":"TypeScript","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/neno-is-ooo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2025-07-11T12:48:18.000Z","updated_at":"2025-07-11T13:45:35.000Z","dependencies_parsed_at":"2025-07-11T14:02:20.318Z","dependency_job_id":"01a7f40d-fa8d-4ba8-9b4c-2cf4ce37e80f","html_url":"https://github.com/neno-is-ooo/claudify","commit_stats":null,"previous_names":["neno-is-ooo/claudify"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/neno-is-ooo/claudify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neno-is-ooo%2Fclaudify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neno-is-ooo%2Fclaudify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neno-is-ooo%2Fclaudify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neno-is-ooo%2Fclaudify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neno-is-ooo","download_url":"https://codeload.github.com/neno-is-ooo/claudify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neno-is-ooo%2Fclaudify/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267527835,"owners_count":24102019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"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":["claude","claude-code","llm","sdk","typescript"],"created_at":"2025-07-28T14:05:56.934Z","updated_at":"2025-11-03T10:02:00.940Z","avatar_url":"https://github.com/neno-is-ooo.png","language":"TypeScript","funding_links":[],"categories":["Proxies \u0026 Model Integrations"],"sub_categories":[],"readme":"# Claudify\n\nUse Claude Code as an LLM provider with your subscription flat fee instead of pay-per-token API keys.\n\n## Installation\n\n```bash\nnpm install claudify\n```\n\nOr install globally for the CLI:\n```bash\nnpm install -g claudify\nclaudify init my-app\n```\n\n## Quick Start\n\n```javascript\nimport { ClaudeCodeSDK } from 'claudify'\n\nconst sdk = new ClaudeCodeSDK()\nconst result = await sdk.executeWithClaudeCode(\"Hello Claude!\")\nconsole.log(result.messages[0].content)\n```\n\n## Prerequisites\n\n1. Install [Claude Code CLI](https://claude.ai/code)\n2. Login with `claude code login`\n3. Have an active Claude Code subscription\n\n## Why Claudify?\n\n- **Flat Fee**: Use your Claude Code Max subscription for unlimited LLM usage\n- **No Token Counting**: Stop worrying about API costs\n- **Simple Integration**: Drop-in SDK for any JavaScript/TypeScript project\n\n## Documentation\n\n- [API Reference](./docs/API_REFERENCE.md)\n- [Integration Guide](./docs/LLM_INTEGRATION_GUIDE.md) \n- [Examples](./examples/)\n\n## Example: Express Server\n\n```javascript\nimport express from 'express'\nimport { ClaudeCodeSDK } from 'claudify'\n\nconst app = express()\nconst sdk = new ClaudeCodeSDK()\n\napp.post('/chat', async (req, res) =\u003e {\n  const result = await sdk.executeWithClaudeCode(req.body.prompt)\n  res.json({ response: result.messages[0].content })\n})\n\napp.listen(3000)\n```\n\n---\n\n## Development\n\nThis section is for contributing to Claudify itself.\n\n### Repository Structure\n\n```\nclaudify/\n├── packages/\n│   ├── sdk/              # Core SDK package (published to npm)\n│   └── demo/             # Demo application\n│       ├── client/       # React frontend\n│       └── server/       # Express backend\n├── docs/                 # Documentation\n└── examples/             # Example integrations\n```\n\n### Setup\n\n```bash\n# Clone repository\ngit clone https://github.com/neno-is-ooo/claudify.git\ncd claudify\n\n# Install dependencies\nnpm install\n\n# Run demo\nnpm run demo\n```\n\n### Building\n\n```bash\n# Build SDK\nnpm run build:sdk\n\n# Run tests\nnpm test\n\n# Publish to npm\ncd packages/sdk\nnpm publish\n```\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneno-is-ooo%2Fclaudify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneno-is-ooo%2Fclaudify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneno-is-ooo%2Fclaudify/lists"}