-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Complete Claude SDK + Cost Optimizer Integration #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ScientiaCapital
merged 16 commits into
main
from
feature/claude-sdk-cost-optimizer-integration
Nov 25, 2025
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a6d45c2
feat: add CostOptimizerClient for HTTP requests to ai-cost-optimizer
ScientiaCapital 5a2eea5
feat: add retry logic and circuit breaker to CostOptimizerClient
ScientiaCapital 358c7d3
fix: implement HALF_OPEN recovery and fix race conditions in circuit …
ScientiaCapital d8fca55
feat(orchestrator): integrate CostOptimizerClient into AgentOrchestrator
ScientiaCapital 24d63b4
fix(orchestrator): resolve naming collision and cost tracking bug
ScientiaCapital cdcc7aa
feat: add chat interface UI for Claude SDK frontend
ScientiaCapital 17c4a32
fix(chat): add accessibility, auto-scroll, unique IDs, and better err…
ScientiaCapital b1f68cc
feat: add chat API endpoint with Claude SDK service
ScientiaCapital 344dd73
fix(chat): add input validation and clarify env var documentation
ScientiaCapital 5978f20
feat: add requirements extraction to ClaudeSDKService
ScientiaCapital cef89ad
feat: connect chat interface to build orchestrator
ScientiaCapital 23fb101
docs: add Task 7 implementation report and example flows
ScientiaCapital 8adebf8
fix(chat): add input sanitization and type safety for build status
ScientiaCapital 7826986
docs: add security fixes summary documentation
ScientiaCapital b762e2a
feat(deployment): add dual-platform deployment (Task 8) + health chec…
ScientiaCapital 53b0970
fix: resolve all build errors for Vercel deployment
ScientiaCapital File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| # Node dependencies | ||
| node_modules | ||
| .pnp | ||
| .pnp.js | ||
|
|
||
| # Build outputs | ||
| .next | ||
| out | ||
| dist | ||
| build | ||
| *.o | ||
| *.a | ||
| *.so | ||
|
|
||
| # Testing | ||
| coverage | ||
| .nyc_output | ||
| playwright-report | ||
| test-results | ||
|
|
||
| # Development | ||
| *.log | ||
| logs | ||
| .DS_Store | ||
| .env | ||
| .env.local | ||
| .env.*.local | ||
| .env.development.local | ||
| .env.test.local | ||
| .env.production.local | ||
|
|
||
| # Git | ||
| .git | ||
| .gitignore | ||
| .gitattributes | ||
|
|
||
| # Documentation | ||
| docs | ||
| *.md | ||
| !README.md | ||
|
|
||
| # IDE | ||
| .vscode | ||
| .idea | ||
| *.swp | ||
| *.swo | ||
| *~ | ||
| .vim | ||
| .emacs | ||
| *.sublime-* | ||
|
|
||
| # Tests | ||
| tests | ||
| __tests__ | ||
| *.test.ts | ||
| *.test.tsx | ||
| *.test.js | ||
| *.test.jsx | ||
| *.spec.ts | ||
| *.spec.tsx | ||
| *.spec.js | ||
| *.spec.jsx | ||
| jest.config.js | ||
| jest.config.ts | ||
| jest.setup.js | ||
| jest.setup.ts | ||
| playwright.config.ts | ||
| vitest.config.ts | ||
|
|
||
| # Python validator | ||
| python-validator | ||
|
|
||
| # CI/CD | ||
| .github | ||
| .gitlab-ci.yml | ||
| .circleci | ||
|
|
||
| # Docker | ||
| Dockerfile* | ||
| docker-compose*.yml | ||
| .dockerignore | ||
|
|
||
| # Misc | ||
| .editorconfig | ||
| .prettierrc | ||
| .eslintrc | ||
| tsconfig.tsbuildinfo | ||
| tsconfig.json | ||
| package-lock.json | ||
| yarn.lock | ||
| pnpm-lock.yaml | ||
| .taskmaster | ||
| coverage | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: excluding
tsconfig.jsonbreaks Docker buildDockerfile.runpod line 51 copies
tsconfig.jsonbut .dockerignore excludes it (line 88), causing the copy to fail.Prompt To Fix With AI