{"id":31789349,"url":"https://github.com/bh2smith/price-agent","last_synced_at":"2025-10-10T14:51:10.540Z","repository":{"id":305285303,"uuid":"1021372550","full_name":"bh2smith/price-agent","owner":"bh2smith","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-16T13:23:12.000Z","size":1997,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-16T15:39:10.099Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://price-agent.vercel.app","language":"TypeScript","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/bh2smith.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-07-17T09:49:41.000Z","updated_at":"2025-09-16T13:23:16.000Z","dependencies_parsed_at":"2025-07-19T11:26:30.771Z","dependency_job_id":"a9aedcdf-5588-4b33-86b6-5c2fd73b4ca5","html_url":"https://github.com/bh2smith/price-agent","commit_stats":null,"previous_names":["bh2smith/price-agent"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bh2smith/price-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bh2smith%2Fprice-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bh2smith%2Fprice-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bh2smith%2Fprice-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bh2smith%2Fprice-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bh2smith","download_url":"https://codeload.github.com/bh2smith/price-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bh2smith%2Fprice-agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004183,"owners_count":26083689,"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-10-10T02:00:06.843Z","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":"2025-10-10T14:51:07.710Z","updated_at":"2025-10-10T14:51:10.532Z","avatar_url":"https://github.com/bh2smith.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitte AI Agent Template\n\nA template repository for building and deploying AI agents on the Bitte Protocol.\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- [Bun](https://bun.sh/) (recommended) or npm/yarn\n- [Vercel CLI](https://vercel.com/cli) - Install globally: `bun i -g vercel`\n- Bitte Protocol account\n\n### 1. Setup\n\nClone this template and install dependencies:\n\n```bash\n# Setup environment variables\ncp .env.example .env\n\n# Install dependencies\nbun install\n```\n\n### 2. Local Development\n\nStart the development server:\n\n```bash\nbun run vercel:dev\n```\n\nYour agent will be available at `http://localhost:3000`\n\n### 3. Deploy to Vercel\n\nDeploy your agent to Vercel:\n\n```bash\nbun run vercel:deploy\n```\n\n### 4. Register with Bitte Protocol\n\nAfter deployment, register your agent with Bitte Protocol:\n\n```bash\n# Validate your agent spec\nbun run validate https://your-agent.vercel.app\n\n# Deploy to Bitte Protocol\nbun run deploy https://your-agent.vercel.app\n```\n\n### 5. Test Your Agent\n\nVisit your agent at: `https://bitte.ai/chat?mode=debug\u0026agentid=your-agent.vercel.app`\n\n## 📖 Detailed Guide\n\n### Environment Configuration\n\nCopy `.env.example` to `.env` and configure your environment variables as needed.\n\n### Package Manager\n\nThis project works with any package manager, but **Bun is recommended** for better performance.\n\n### Development Workflow\n\n1. **Local Development**: Use `bun run vercel:dev` to test locally\n2. **Deploy**: Use `bun run vercel:deploy` to deploy to Vercel\n3. **Validate**: Use `bun run validate` to check your agent spec\n4. **Register**: Use `bun run deploy` to register with Bitte Protocol\n\n## 🔧 Advanced Configuration\n\n### Automatic URL Detection\n\nScripts can automatically detect your agent URL:\n\n```bash\n# These work without specifying URL\nbun run validate\nbun run deploy\n```\n\nURL detection priority:\n\n1. `BITTE_AGENT_URL` environment variable\n2. Vercel deployment URL (auto-detected)\n\n### Custom Agent URL\n\nSet a custom URL via environment variable:\n\n```bash\nexport BITTE_AGENT_URL=https://your-custom-domain.com\nbun run validate\nbun run deploy\n```\n\n## 🛠 Troubleshooting\n\n### \"No agent URL found\" Error\n\nIf automatic detection fails:\n\n1. Ensure you've deployed to Vercel first\n2. Run commands from your project root directory\n3. Manually specify the URL: `bun run deploy https://your-agent.vercel.app`\n\n### Agent ID Format\n\nYour agent ID is the hostname from your deployment URL:\n\n- URL: `https://my-agent.vercel.app` → Agent ID: `my-agent.vercel.app`\n\n## 📚 Resources\n\n- [Bitte Protocol Documentation](https://docs.bitte.ai)\n- [Agent Testing Interface](https://bitte.ai/chat?mode=debug\u0026agentid=micro-agent-vercel.app)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbh2smith%2Fprice-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbh2smith%2Fprice-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbh2smith%2Fprice-agent/lists"}