[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-11095":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":13,"stars7d":16,"stars30d":17,"stars90d":15,"forks30d":15,"starsTrendScore":18,"compositeScore":19,"rankGlobal":9,"rankLanguage":9,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":21,"hasPages":21,"topics":23,"createdAt":9,"pushedAt":9,"updatedAt":28,"readmeContent":29,"aiSummary":30,"trendingCount":15,"starSnapshotCount":15,"syncStatus":31,"lastSyncTime":32,"discoverSource":33},11095,"stella","stella\u002Fstella","Open-source legal workspace","http:\u002F\u002Fstll.app\u002F",null,"TypeScript",128,26,4,14,0,7,41,12,59.89,"Apache License 2.0",false,"main",[24,25,26,27],"law","legal","legaltech","open-source","2026-06-12 04:00:53","\u003Cp align=\"center\">\n  \u003Cimg src=\".github\u002Fassets\u002Fbanner.png\" alt=\"Stella\" width=\"100%\" \u002F>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Cstrong>Legal workspace: free to use, open to inspect, yours to keep.\u003C\u002Fstrong>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fstll.app\">Website\u003C\u002Fa> &middot;\n  \u003Ca href=\"MANIFESTO.md\">Manifesto\u003C\u002Fa> &middot;\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fstella\u002Fstella\u002Fissues\">Issues\u003C\u002Fa> &middot;\n  \u003Ca href=\"CONTRIBUTING.md\">Contributing\u003C\u002Fa> &middot;\n  \u003Ca href=\"https:\u002F\u002Fdiscord.gg\u002F8dZjmVFjTK\">Discord\u003C\u002Fa>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fstella\u002Fstella\u002Freleases\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fv\u002Frelease\u002Fstella\u002Fstella?include_prereleases&label=release\" alt=\"Latest release\" \u002F>\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fstella\u002Fstella\u002Fblob\u002Fmain\u002FLICENSE\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-Apache--2.0-blue\" alt=\"License\" \u002F>\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fstll.app\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fcloud-stll.app-black\" alt=\"Stella Cloud\" \u002F>\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fstella\u002Fstella\u002Fissues\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fissues\u002Fstella\u002Fstella\" alt=\"Issues\" \u002F>\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fdiscord.gg\u002F8dZjmVFjTK\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fdiscord-join%20chat-5865F2?logo=discord&logoColor=white\" alt=\"Discord\" \u002F>\u003C\u002Fa>\n\u003C\u002Fp>\n\n---\n\nStella is an open-source workspace for legal teams, currently in beta.\n\n## Features\n\n**Matters.** Organize your practice around matters. Track status,\ndeadlines, parties and related documents in one place.\n\n**Documents.** Store, search and manage files across your organization.\nFull-text search, versioning and granular access control included.\n\n**Review.** Analyze files at scale. Tabular Review pulls structured data from documents,\nbuilt for due diligence, discovery and research.\n\n**Research.** Find relevant laws, cases or doctrinal materials, with a database of\nlegal sources, premium reading experience. Coming soon.\n\n**Anonymization.** Remove personally identifiable information from documents and data\nbefore they are sent to AI. Coming soon.\n\n## Quickstart\n\n### stella Cloud\n\nHosted stella preview is available at [my.stll.app](https:\u002F\u002Fmy.stll.app).\n\n### Self-hosting\n\nRun stella on your own infrastructure with the\n[self-hosting guide](apps\u002Fdocs\u002Fsrc\u002Fcontent\u002Fdocs\u002Fguides\u002Fself-hosting.md). The\nself-host Compose file runs the API and Gotenberg only; configure Postgres,\nRedis or Valkey, S3-compatible storage, `GOTENBERG_URL`, and Gotenberg\ncredentials in `apps\u002Fapi\u002F.env`.\n\n### Prerequisites\n\n- Bun\n- Git\n- Docker Desktop or Docker Engine\n\n### Run stella locally\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002Fstella\u002Fstella.git\ncd stella\nbun run dev\n```\n\nThis installs dependencies, prepares local env files, starts Docker services,\npushes the database schema, starts the API at \u003Chttp:\u002F\u002Flocalhost:3001>, starts\nthe web app at \u003Chttp:\u002F\u002Flocalhost:3000>, and opens the browser.\n\n### Optional demo data\n\n```bash\nbun --filter @stll\u002Fapi db:seed-test-user\nbun --filter @stll\u002Fapi db:seed-dev\n```\n\n### Common commands\n\n```bash\n# Run only the web app, reusing an existing API\nbun run dev:web\n\n# Run only the API and local infrastructure\nbun run dev:api\n\n# Run without opening a browser\nbun run dev --no-browser\n\n# Skip setup steps when iterating\nbun run dev --skip-install\nbun run dev --skip-db-push\n\n# Use shifted ports for parallel worktrees\nbun run dev --dev-instance feature-a\n```\n\nLocal development uses mock AI by default. To use real AI, set provider keys in\n`apps\u002Fapi\u002F.env` and set `USE_MOCK_AI=\"false\"`.\n\n## Responsible use\n\nStella does not aim to replace human judgment or provide legal advice. Stella relies\non AI models, which can produce incorrect or misleading output. We aim to ground AI\nflows in citations and traceable source material, but we encourage users to\nalways validate the answers.\n\n## Contributing\n\nWe welcome contributions. You can help not only by writing code, but also, e.g., by\nproviding feedback, or translating. Please read [CONTRIBUTING.md](CONTRIBUTING.md) for\nmore information and our policy on AI-generated contributions.\n\nPRs must pass the linting and testing pipeline. You will be prompted\nto sign the Contributor License Agreement (CLA) by CI.\n\n## Contact\n\n1. Open an issue for questions, feedback or suggestions.\n2. Reach out to us for general queries at [hello@stll.app](mailto:hello@stll.app).\n3. [security@stll.app](mailto:security@stll.app) for security issues\n   (see [Security Policy](SECURITY.md)).\n\n## Licensing\n\nLicensed under the Apache License 2.0. See [LICENSE](LICENSE) for the full\nlicense text and [NOTICE](NOTICE) for attribution of bundled third-party code.\n\n## Development\n\n- Workspace layout:\n  `apps\u002F*` contains runnable applications, `packages\u002F*` contains shared or\n  publishable packages, and every workspace package uses the `@stll\u002F\u003Cname>`\n  naming convention.\n- [Stella Web App](\u002Fapps\u002Fweb\u002FREADME.md)\n- [Stella Desktop App](\u002Fapps\u002Fdesktop\u002FREADME.md)\n- [Stella Landing Site](\u002Fapps\u002Flanding\u002FREADME.md)\n- [Stella API](\u002Fapps\u002Fapi\u002FREADME.md)\n","Stella 是一个面向法律团队的开源工作空间。其核心功能包括案件管理、文档存储与搜索、文件审查以及即将推出的法律研究和匿名化工具。通过Matters模块，用户可以围绕案件组织工作，跟踪状态、截止日期、相关方及文档；Documents模块则支持全组织范围内的文件存储、搜索和版本控制，并提供细粒度访问控制。此外，Review功能允许大规模分析文件，提取结构化数据，适用于尽职调查、发现程序和研究场景。Stella适合需要高效管理和处理法律文件的律师事务所或企业法务部门使用，既可以通过云服务快速上手，也支持自托管以满足特定安全需求。",2,"2026-06-11 03:31:10","CREATED_QUERY"]