{"id":31126276,"url":"https://github.com/aignostics/typescript-sdk","last_synced_at":"2026-04-02T12:01:32.023Z","repository":{"id":313882484,"uuid":"1022127583","full_name":"aignostics/typescript-sdk","owner":"aignostics","description":"Aignostics TypeScript SDK","archived":false,"fork":false,"pushed_at":"2026-03-24T10:28:19.000Z","size":2065,"stargazers_count":2,"open_issues_count":7,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T12:14:50.939Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/aignostics.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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-18T13:54:34.000Z","updated_at":"2026-03-24T10:10:10.000Z","dependencies_parsed_at":"2026-01-08T09:09:34.669Z","dependency_job_id":null,"html_url":"https://github.com/aignostics/typescript-sdk","commit_stats":null,"previous_names":["aignostics/typescript-sdk"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/aignostics/typescript-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aignostics%2Ftypescript-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aignostics%2Ftypescript-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aignostics%2Ftypescript-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aignostics%2Ftypescript-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aignostics","download_url":"https://codeload.github.com/aignostics/typescript-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aignostics%2Ftypescript-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31305971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T09:48:21.550Z","status":"ssl_error","status_checked_at":"2026-04-02T09:48:19.196Z","response_time":89,"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":[],"created_at":"2025-09-17T22:04:29.784Z","updated_at":"2026-04-02T12:01:31.973Z","avatar_url":"https://github.com/aignostics.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aignostics Platform TypeScript SDK\n\n[![codecov](https://codecov.io/github/aignostics/typescript-sdk/graph/badge.svg?token=Y5nGFdSlX1)](https://codecov.io/github/aignostics/typescript-sdk)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=aignostics_typescript-sdk\u0026metric=alert_status\u0026token=57884e493e2a2670dc8da5cc59eeb57e56d00d74)](https://sonarcloud.io/summary/new_code?id=aignostics_typescript-sdk)\n[![CI/CD Pipeline](https://github.com/aignostics/typescript-sdk/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/aignostics/typescript-sdk/actions/workflows/ci-cd.yml)\n\nThe official TypeScript SDK for the Aignostics Platform, providing type-safe access to the Aignostics API. Also includes a CLI tool for command-line operations.\n\nFor general information about the Aignostics Platform [check this documentation page](https://aignostics.readthedocs.io/en/latest/main.html#platform)\n\n## Packages\n\n- **[@aignostics/sdk](packages/sdk/)** - Core TypeScript SDK with auto-generated API clients\n- **[@aignostics/cli](packages/cli/)** - Command-line interface for platform operations\n\n## Features\n\n- 🚀 **Type-safe API client** - Generated from OpenAPI specifications\n- 🔧 **CLI tool** - Command-line interface for platform operations\n- 🧪 **Comprehensive testing** - 85%+ code coverage with unit and integration tests\n- 🛡️ **Code quality** - ESLint, Prettier, and SonarQube integration\n\n## Installation\n\n### SDK Package\n\n```bash\nnpm install @aignostics/sdk\n```\n\n### CLI Package\n\n```bash\nnpm install -g @aignostics/cli\n```\n\n## Usage\n\nFor detailed usage instructions, see the individual package documentation:\n\n- **SDK Usage**: [packages/sdk/README.md](packages/sdk/README.md)\n- **CLI Usage**: [packages/cli/README.md](packages/cli/README.md)\n\n### Quick Start - SDK\n\n```typescript\nimport { PlatformSDK } from '@aignostics/sdk';\n\nconst sdk = new PlatformSDK({\n  baseURL: 'https://api.aignostics.com',\n  tokenProvider: () =\u003e 'your-access-token-here',\n});\n\n// List applications\nconst applications = await sdk.listApplications();\n\n// List application runs\nconst runs = await sdk.listApplicationRuns();\n```\n\n### Quick Start - CLI\n\n```bash\n# Install and use the CLI\nnpm install -g @aignostics/cli\naignostics info\n```\n\n## Developer Documentation\n\n### Architecture \u0026 Development\n\n- [HTTP Mocking Patterns](docs/HTTP_MOCKING.md) - Testing patterns for HTTP requests\n- [Testing Conventions](docs/TESTING_CONVENTION.md) - Testing standards and best practices\n- [Token Storage](docs/TOKEN_STORAGE.md) - CLI authentication implementation\n- [Dependency Injection](docs/DEPENDENCY_INJECTION.md) - DI patterns and practices\n\n## Development Setup\n\n### Prerequisites\n\n- Node.js 18+\n- Docker (for OpenAPI code generation)\n\n### Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/aignostics/typescript-sdk.git\ncd typescript-sdk\n\n# Install dependencies\nnpm install\n\n# Build all packages\nnpm run build\n```\n\n### Nx Commands\n\n```bash\n# Build all packages\nnx run-many -t build\n\n# Test all packages\nnx run-many -t test\n\n# Work with individual packages\nnx build sdk           # Build only SDK\nnx test cli           # Test only CLI\nnx codegen sdk        # Generate OpenAPI client\n```\n\n### Available Scripts\n\n- `npm run build` - Build all packages\n- `npm run test` - Run all tests\n- `npm run lint` - Lint all packages\n- `npm run codegen` - Generate OpenAPI client for SDK\n- `npm run clean` - Clean all build outputs\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'feat: add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Commit Convention\n\nThis project uses [Conventional Commits](https://conventionalcommits.org/). Please format your commits accordingly:\n\n- `feat:` - New features\n- `fix:` - Bug fixes\n- `docs:` - Documentation changes\n- `style:` - Code style changes\n- `refactor:` - Code refactoring\n- `test:` - Test changes\n- `chore:` - Build/tooling changes\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\nFor support, please open an issue on [GitHub](https://github.com/aignostics/typescript-sdk/issues) or contact the development team.\n\n---\n\nMade with ❤️ by the Aignostics team\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faignostics%2Ftypescript-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faignostics%2Ftypescript-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faignostics%2Ftypescript-sdk/lists"}