{"id":45967059,"url":"https://github.com/d-oit/do-multitenant-prompt-manager","last_synced_at":"2026-02-28T14:20:06.449Z","repository":{"id":318828314,"uuid":"1074898886","full_name":"d-oit/do-multitenant-prompt-manager","owner":"d-oit","description":"A multi-tenant prompt operations suite that consolidates dashboarding, analytics, and prompt authoring into one workspace, featuring tenant management, keyboard-driven workflows, and token-gated Cloudflare worker APIs to orchestrate prompt lifecycles end-to-end.","archived":false,"fork":false,"pushed_at":"2025-10-15T19:13:06.000Z","size":730,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-15T19:26:34.305Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/d-oit.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":".github/CODEOWNERS","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-10-12T17:27:47.000Z","updated_at":"2025-10-15T07:16:59.000Z","dependencies_parsed_at":"2025-10-16T13:34:47.608Z","dependency_job_id":"b2b3b951-82aa-43e8-abf4-a958a27707d6","html_url":"https://github.com/d-oit/do-multitenant-prompt-manager","commit_stats":null,"previous_names":["d-oit/do-multitenant-prompt-manager"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/d-oit/do-multitenant-prompt-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-oit%2Fdo-multitenant-prompt-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-oit%2Fdo-multitenant-prompt-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-oit%2Fdo-multitenant-prompt-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-oit%2Fdo-multitenant-prompt-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d-oit","download_url":"https://codeload.github.com/d-oit/do-multitenant-prompt-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-oit%2Fdo-multitenant-prompt-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29937315,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"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-02-28T14:20:04.925Z","updated_at":"2026-02-28T14:20:06.376Z","avatar_url":"https://github.com/d-oit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# do-multitenant-prompt-manager\n\nA multi-tenant prompt operations suite that consolidates dashboarding, analytics, and prompt authoring into one workspace, featuring tenant management, keyboard-driven workflows, and token-gated Cloudflare worker APIs to orchestrate prompt lifecycles end-to-end.\n\n## Overview\n\nThis project provides a comprehensive solution for managing prompts across multiple tenants with the following key features:\n\n- **Multi-tenant architecture**: Isolated workspaces for different organizations\n- **Unified dashboard**: Consolidated view of analytics, metrics, and prompt performance\n- **Advanced prompt authoring**: Monaco-based editor with syntax highlighting and validation\n- **Keyboard-driven workflows**: Efficient navigation and operations via keyboard shortcuts\n- **Cloudflare Worker APIs**: Serverless backend with token-based authentication\n- **End-to-end prompt lifecycle**: From creation to deployment and monitoring\n\n## Architecture\n\nThis is a monorepo containing:\n\n- **frontend**: React-based web application built with Vite\n- **worker**: Cloudflare Worker API for backend services\n- **shared**: Shared types and utilities (if applicable)\n\n## Getting Started\n\nSee [SETUP.md](./SETUP.md) for detailed setup instructions.\n\n### Prerequisites\n\n- Node.js 18+\n- npm or yarn\n- Cloudflare account (for worker deployment)\n\n### Installation\n\n```bash\nnpm install\n```\n\n### Development\n\nRun both frontend and worker in development mode:\n\n```bash\n# Frontend\nnpm run dev:frontend\n\n# Worker\nnpm run dev:worker\n```\n\n### Testing\n\n```bash\n# Run all tests\nnpm test\n\n# Run frontend tests\nnpm run test:frontend\n\n# Run worker tests\nnpm run test:worker\n\n# Run E2E tests\nnpm run test:e2e\n```\n\n### Deployment\n\n```bash\n# Deploy worker\nnpm run deploy:worker\n\n# Deploy frontend (Cloudflare Pages)\nnpm run deploy:pages\n```\n\n## Repository Management\n\nThis repository follows a structured branching strategy to maintain code quality and enable smooth collaboration. For detailed branching rules, branch protection settings, and contribution guidelines, see [.github/BRANCHING.md](./.github/BRANCHING.md).\n\n## Scripts\n\n- `npm run dev:frontend` - Start frontend development server\n- `npm run dev:worker` - Start worker development server\n- `npm run build:frontend` - Build frontend for production\n- `npm run lint` - Lint all workspaces\n- `npm run format` - Check code formatting\n- `npm run test` - Run all tests\n- `npm run test:e2e` - Run end-to-end tests\n- `npm run deploy:worker` - Deploy worker to Cloudflare\n- `npm run deploy:pages` - Deploy frontend to Cloudflare Pages\n\n## License\n\nSee [LICENSE](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-oit%2Fdo-multitenant-prompt-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd-oit%2Fdo-multitenant-prompt-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-oit%2Fdo-multitenant-prompt-manager/lists"}