{"id":51175351,"url":"https://github.com/dylan-gluck/specstar-archive","last_synced_at":"2026-06-27T03:05:30.439Z","repository":{"id":313960846,"uuid":"1053200404","full_name":"dylan-gluck/specstar-archive","owner":"dylan-gluck","description":"Monitor active Claude Code sessions in real-time with detailed statistics and event tracking","archived":false,"fork":false,"pushed_at":"2025-09-25T21:51:57.000Z","size":4018,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-26T01:49:46.356Z","etag":null,"topics":["claude-code","context-engineering","ink","observibility","sdd","spec-driven-development","tui","typescript"],"latest_commit_sha":null,"homepage":"","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/dylan-gluck.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-09-09T06:03:11.000Z","updated_at":"2026-02-25T23:06:28.000Z","dependencies_parsed_at":"2025-09-09T20:54:38.759Z","dependency_job_id":"23120a23-2236-46b4-a844-d41bb5e75fe9","html_url":"https://github.com/dylan-gluck/specstar-archive","commit_stats":null,"previous_names":["dylan-gluck/specstar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dylan-gluck/specstar-archive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylan-gluck%2Fspecstar-archive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylan-gluck%2Fspecstar-archive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylan-gluck%2Fspecstar-archive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylan-gluck%2Fspecstar-archive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dylan-gluck","download_url":"https://codeload.github.com/dylan-gluck/specstar-archive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylan-gluck%2Fspecstar-archive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34839939,"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-27T02:00:06.362Z","response_time":126,"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-code","context-engineering","ink","observibility","sdd","spec-driven-development","tui","typescript"],"created_at":"2026-06-27T03:05:29.829Z","updated_at":"2026-06-27T03:05:30.433Z","avatar_url":"https://github.com/dylan-gluck.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Specstar Monorepo\n\nPlatform + CLI tool for collaborative spec-driven development.\n\nMain Features:\n* Project specs and documentation maintained independently from codebase\n* Integrated knowledge graph for large codebase understanding and dependency mapping\n* Agentic tasks and workflows for planning features, epics, sprints and whole projects\n* Web-ui for managing projects, tasks and requirements\n* CLI tool that connects coding agents to the platform within project repo\n\n## Monorepo Structure\n\n```\nspecstar-mono/\n├── apps/\n│   ├── platform/          # Next.js web application\n│   └── cli/               # Bun CLI tool\n├── packages/\n│   ├── shared/            # Shared types and utilities\n│   └── config/            # Shared configurations\n```\n\n## Quick Start\n\n### Prerequisites\n\n- Node.js \u003e= 20.0.0\n- pnpm \u003e= 9.0.0\n- Bun \u003e= 1.0.0 (for CLI development)\n- PostgreSQL database\n\n### Installation\n\n```bash\n# Install dependencies\npnpm install\n\n# Build all packages\npnpm build\n```\n\n### Development\n\n```bash\n# Run all development servers\npnpm dev\n\n# Run specific app\npnpm --filter @specstar/platform dev\npnpm --filter @specstar/cli dev\n```\n\n## Available Scripts\n\n### Root Commands\n\n- `pnpm build` - Build all packages\n- `pnpm dev` - Start all dev servers\n- `pnpm lint` - Run linting across all packages\n- `pnpm typecheck` - Type check all packages\n- `pnpm clean` - Clean build artifacts\n\n### Database Commands (Platform)\n\n- `pnpm db:migrate` - Run database migrations\n- `pnpm db:push` - Push schema changes\n- `pnpm db:generate` - Generate Prisma client\n\n## Components\n\n### Platform (`apps/platform`)\n\n* Platform as a service, open-source community edition run locally\n* User authentication, user can belong to an organization\n* Projects belong to user or organization\n* Each project has a Knowledge-graph and markdown documents\n* Built with Next.js 15.5, Better-auth, Prisma, tRPC, and Tailwind CSS\n\n### CLI Tool (`apps/cli`)\n\n* CLI tool `specstar` connects to platform instance (API key)\n* Commands to fetch project context, specs, requirements\n* Observibility hooks to monitor sessions\n* Built with Bun, Ink for terminal UI, and React components\n\n## Configuration\n\n### Environment Variables\n\nCreate `.env.local` files in respective app directories. See example files:\n- `apps/platform/.env.example`\n- `apps/cli/.env.example`\n\n## Build System\n\nThis monorepo uses Turborepo for:\n- Intelligent caching\n- Parallel execution\n- Dependency graph awareness\n- Remote caching support\n\n## Deployment\n\n### Platform\n\nDeploy to Vercel, any Node.js hosting provider, or Docker containers.\n\n### CLI\n\n```bash\n# Build binary\npnpm --filter @specstar/cli build:binary\n\n# Install globally\npnpm --filter @specstar/cli install:global\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylan-gluck%2Fspecstar-archive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdylan-gluck%2Fspecstar-archive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylan-gluck%2Fspecstar-archive/lists"}