{"id":49197775,"url":"https://github.com/visomi-dev/themis","last_synced_at":"2026-04-23T12:02:45.275Z","repository":{"id":351214812,"uuid":"1208943206","full_name":"visomi-dev/themis","owner":"visomi-dev","description":"AI-integrated technical ledger for human-AI collaborative task management","archived":false,"fork":false,"pushed_at":"2026-04-21T03:57:38.000Z","size":2714,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-21T05:31:42.899Z","etag":null,"topics":["ai-agents","angular","monorepo","nx","ssr","task-management","typescript"],"latest_commit_sha":null,"homepage":"https://themis.visomi.dev","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/visomi-dev.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-13T00:02:51.000Z","updated_at":"2026-04-21T03:57:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/visomi-dev/themis","commit_stats":null,"previous_names":["visomi-dev/themis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/visomi-dev/themis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visomi-dev%2Fthemis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visomi-dev%2Fthemis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visomi-dev%2Fthemis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visomi-dev%2Fthemis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/visomi-dev","download_url":"https://codeload.github.com/visomi-dev/themis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visomi-dev%2Fthemis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32179387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T11:42:27.955Z","status":"ssl_error","status_checked_at":"2026-04-23T11:42:18.877Z","response_time":53,"last_error":"SSL_read: 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":["ai-agents","angular","monorepo","nx","ssr","task-management","typescript"],"created_at":"2026-04-23T12:02:44.411Z","updated_at":"2026-04-23T12:02:45.270Z","avatar_url":"https://github.com/visomi-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# themis\n\nDeveloper-first task system monorepo built with Nx.\n\nThis workspace combines:\n\n- `apps/web/site` - Astro public landing site\n- `apps/web/app` - Angular web application scaffold\n- `apps/web/api` - Express API for domain endpoints\n- `apps/web/server` - Node composition server that mounts the site and API behind one runtime\n- `apps/web/site-e2e` - Playwright smoke coverage for the Astro site\n- `apps/web/app-e2e` - Playwright smoke coverage for the Angular app\n- `apps/web/api-e2e` - Jest-based API end-to-end coverage\n- `apps/web/server-e2e` - Jest-based composition server end-to-end coverage\n\n## Architecture\n\nThe current repository direction is a monolith-style deployment with modular Nx apps:\n\n- Astro handles the public marketing surface\n- Angular is the richer application surface for the product UI\n- Express owns backend endpoints under `/api`\n- `apps/web/server` is the single Node entry point used to compose the site and API\n\nThis keeps the repo ready for future expansion into additional clients while preserving a single deployable runtime today.\n\n## Workspace Projects\n\n```text\napps/web/\n├── api/        Express API\n├── api-e2e/    API end-to-end tests\n├── app/        Angular application\n├── app-e2e/    App end-to-end tests\n├── server/     Node gateway/composition server\n├── server-e2e/ Server composition end-to-end tests\n├── site/       Astro landing site\n└── site-e2e/   Playwright smoke tests for the site\n```\n\n## Requirements\n\n- Node.js\n- pnpm\n\nInstall dependencies:\n\n```bash\npnpm install\n```\n\n## Local Development\n\n### Astro site only\n\n```bash\npnpm nx run site:serve\n```\n\n### Angular app only\n\n```bash\npnpm nx run app:serve\n```\n\n### API only\n\n```bash\npnpm nx run api:serve\n```\n\n### Full composed server\n\n```bash\npnpm nx run server:serve\n```\n\n## Docker\n\nBuild the production image:\n\n```bash\ndocker build -t themis .\n```\n\nRun the composed server container:\n\n```bash\ndocker run --rm -p 8080:8080 themis\n```\n\nThe container starts `dist/apps/web/server/main.js`, which mounts the built Astro site and the API behind the single Node runtime.\n\nHealth endpoint:\n\n```bash\ncurl http://localhost:8080/healthz\n```\n\nExpected response:\n\n```json\n{ \"status\": \"ok\" }\n```\n\n## Verification\n\n```bash\npnpm nx show projects\npnpm nx affected -t lint\npnpm nx run-many -t build\npnpm nx run site:typecheck\npnpm nx run api-e2e:e2e\npnpm nx run server-e2e:e2e\n```\n\n## Documentation\n\n- `docs/overview.md`\n- `docs/product/prd.md`\n- `docs/architecture/system-architecture.md`\n- `docs/design/visual-discovery.md`\n\n## Notes\n\n- `.husky/pre-commit` runs `pnpm nx affected -t lint`\n- Commit messages are validated by Commitlint via `.husky/commit-msg`\n- The current Angular app is intentionally scaffold-level while the domain implementation is defined in `docs/`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisomi-dev%2Fthemis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvisomi-dev%2Fthemis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisomi-dev%2Fthemis/lists"}