feat(mcp): add AgentStack schema and default stacks (#1182)#1190
Merged
Conversation
- Add AgentStack interface to agent.types.ts - Add Zod validation schema in agent-stack.schema.ts - Add filesystem loader in agent-stack.loader.ts - Create 6 default stack presets: full-stack, api-development, frontend-polish, data-pipeline, security-audit, ml-infrastructure - Add comprehensive tests for schema validation and stack loading
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
JeremyDev87
commented
Apr 3, 2026
JeremyDev87
left a comment
Owner
Author
There was a problem hiding this comment.
✅ Conductor Review — APPROVE
CI: 25/25 ALL PASS
Review: APPROVE — 0 issues
Plan Verification:
- AgentStack TypeScript interface in agent.types.ts
- Zod schema with validation (AgentStackSchema)
- Loader utility (loadAgentStack, loadAgentStacks)
- 6 default stacks: full-stack, api-development, frontend-polish, data-pipeline, security-audit, ml-infrastructure
- Graceful fallback on missing directory
- Comprehensive tests (schema validation + loader)
- No unused imports, no any types
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
AgentStackinterface toagent.types.tsfor pre-configured agent team definitionsagent-stack.schema.ts) and filesystem loader (agent-stack.loader.ts)packages/rules/.ai-rules/agent-stacks/:full-stack— software-engineer + frontend/backend/security/test/performanceapi-development— backend-developer + security/test/performance/docsfrontend-polish— frontend-developer + ui-ux/a11y/performance/seodata-pipeline— data-engineer + data-scientist/performance/observabilitysecurity-audit— security-engineer + security/test-strategy/code-qualityml-infrastructure— ai-ml-engineer + data-scientist/performance/observability/testTest plan
AgentStackSchemaZod validation (valid data, missing fields, invalid types)loadAgentStack/loadAgentStacksfilesystem loaderCloses #1182