agentrium 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +181 -0
- package/dist/agents/architect.d.ts +2 -0
- package/dist/agents/architect.js +23 -0
- package/dist/agents/architect.js.map +1 -0
- package/dist/agents/base.d.ts +10 -0
- package/dist/agents/base.js +37 -0
- package/dist/agents/base.js.map +1 -0
- package/dist/agents/codeReviewer.d.ts +3 -0
- package/dist/agents/codeReviewer.js +32 -0
- package/dist/agents/codeReviewer.js.map +1 -0
- package/dist/agents/productManager.d.ts +2 -0
- package/dist/agents/productManager.js +23 -0
- package/dist/agents/productManager.js.map +1 -0
- package/dist/agents/qaEngineer.d.ts +2 -0
- package/dist/agents/qaEngineer.js +23 -0
- package/dist/agents/qaEngineer.js.map +1 -0
- package/dist/agents/registry.d.ts +3 -0
- package/dist/agents/registry.js +30 -0
- package/dist/agents/registry.js.map +1 -0
- package/dist/agents/reviewArbiter.d.ts +2 -0
- package/dist/agents/reviewArbiter.js +24 -0
- package/dist/agents/reviewArbiter.js.map +1 -0
- package/dist/agents/softwareEngineer.d.ts +2 -0
- package/dist/agents/softwareEngineer.js +23 -0
- package/dist/agents/softwareEngineer.js.map +1 -0
- package/dist/agents/technicalWriter.d.ts +2 -0
- package/dist/agents/technicalWriter.js +24 -0
- package/dist/agents/technicalWriter.js.map +1 -0
- package/dist/agents/types.d.ts +10 -0
- package/dist/agents/types.js +2 -0
- package/dist/agents/types.js.map +1 -0
- package/dist/agents/uxDesigner.d.ts +2 -0
- package/dist/agents/uxDesigner.js +23 -0
- package/dist/agents/uxDesigner.js.map +1 -0
- package/dist/artifacts/store.d.ts +20 -0
- package/dist/artifacts/store.js +81 -0
- package/dist/artifacts/store.js.map +1 -0
- package/dist/cli/commands/init.d.ts +2 -0
- package/dist/cli/commands/init.js +44 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/run.d.ts +2 -0
- package/dist/cli/commands/run.js +67 -0
- package/dist/cli/commands/run.js.map +1 -0
- package/dist/cli/commands/runs.d.ts +2 -0
- package/dist/cli/commands/runs.js +37 -0
- package/dist/cli/commands/runs.js.map +1 -0
- package/dist/cli/commands/show.d.ts +4 -0
- package/dist/cli/commands/show.js +56 -0
- package/dist/cli/commands/show.js.map +1 -0
- package/dist/cli/commands/status.d.ts +2 -0
- package/dist/cli/commands/status.js +28 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/commands/workspaces.d.ts +2 -0
- package/dist/cli/commands/workspaces.js +24 -0
- package/dist/cli/commands/workspaces.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.js +30 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/utils.d.ts +1 -0
- package/dist/cli/utils.js +28 -0
- package/dist/cli/utils.js.map +1 -0
- package/dist/context/configParser.d.ts +2 -0
- package/dist/context/configParser.js +109 -0
- package/dist/context/configParser.js.map +1 -0
- package/dist/context/contextBuilder.d.ts +2 -0
- package/dist/context/contextBuilder.js +39 -0
- package/dist/context/contextBuilder.js.map +1 -0
- package/dist/context/repoAnalyzer.d.ts +4 -0
- package/dist/context/repoAnalyzer.js +84 -0
- package/dist/context/repoAnalyzer.js.map +1 -0
- package/dist/context/types.d.ts +35 -0
- package/dist/context/types.js +2 -0
- package/dist/context/types.js.map +1 -0
- package/dist/pipeline/checkpoint.d.ts +4 -0
- package/dist/pipeline/checkpoint.js +62 -0
- package/dist/pipeline/checkpoint.js.map +1 -0
- package/dist/pipeline/pipeline.d.ts +7 -0
- package/dist/pipeline/pipeline.js +33 -0
- package/dist/pipeline/pipeline.js.map +1 -0
- package/dist/pipeline/runner.d.ts +15 -0
- package/dist/pipeline/runner.js +127 -0
- package/dist/pipeline/runner.js.map +1 -0
- package/dist/pipeline/types.d.ts +14 -0
- package/dist/pipeline/types.js +14 -0
- package/dist/pipeline/types.js.map +1 -0
- package/dist/review/process.d.ts +15 -0
- package/dist/review/process.js +149 -0
- package/dist/review/process.js.map +1 -0
- package/dist/review/types.d.ts +9 -0
- package/dist/review/types.js +16 -0
- package/dist/review/types.js.map +1 -0
- package/dist/workspace/manager.d.ts +7 -0
- package/dist/workspace/manager.js +63 -0
- package/dist/workspace/manager.js.map +1 -0
- package/package.json +51 -0
- package/prompts/architect.md +40 -0
- package/prompts/codeReviewerLogic.md +43 -0
- package/prompts/codeReviewerSecurity.md +43 -0
- package/prompts/productManager.md +29 -0
- package/prompts/qaEngineer.md +49 -0
- package/prompts/reviewArbiter.md +45 -0
- package/prompts/softwareEngineer.md +43 -0
- package/prompts/technicalWriter.md +40 -0
- package/prompts/uxDesigner.md +42 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Role: UX Designer
|
|
2
|
+
|
|
3
|
+
You are a UX Designer. You produce UI/UX design specifications for frontend tasks.
|
|
4
|
+
|
|
5
|
+
## Input
|
|
6
|
+
|
|
7
|
+
You receive:
|
|
8
|
+
- The original task description
|
|
9
|
+
- Product Manager's requirements and acceptance criteria
|
|
10
|
+
- Full project context (tech stack, existing conventions)
|
|
11
|
+
|
|
12
|
+
## Your Responsibilities
|
|
13
|
+
|
|
14
|
+
1. **User flows** — describe the user journey step by step
|
|
15
|
+
2. **Screen layouts** — describe each screen: components, layout, content
|
|
16
|
+
3. **Interactions** — specify click/input/navigation behavior
|
|
17
|
+
4. **States** — loading, error, empty, success states for each screen
|
|
18
|
+
5. **Accessibility** — ARIA roles, keyboard navigation, color contrast notes
|
|
19
|
+
6. **Responsive breakpoints** — mobile, tablet, desktop if relevant
|
|
20
|
+
|
|
21
|
+
## Output Format
|
|
22
|
+
|
|
23
|
+
Produce a markdown document with:
|
|
24
|
+
|
|
25
|
+
## User Flows
|
|
26
|
+
Step-by-step description of each user journey.
|
|
27
|
+
|
|
28
|
+
## Screens
|
|
29
|
+
|
|
30
|
+
### Screen: [Name]
|
|
31
|
+
- **Layout:** description of the layout
|
|
32
|
+
- **Components:** list of UI components
|
|
33
|
+
- **Content:** text, labels, placeholders
|
|
34
|
+
|
|
35
|
+
## Interaction Spec
|
|
36
|
+
Describe behavior for each interactive element.
|
|
37
|
+
|
|
38
|
+
## States
|
|
39
|
+
For each screen: loading, error, empty, success states.
|
|
40
|
+
|
|
41
|
+
## Accessibility Notes
|
|
42
|
+
Any specific requirements.
|