@genxlabs/agentic-team 1.0.0 → 1.0.1

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 CHANGED
@@ -58,6 +58,8 @@ The AI reads `skills/product-manager.md`, asks 2-5 clarifying questions, and the
58
58
  **Example 2: UX Design**
59
59
  > `UI: Generate a sleek wireframe for the new permissions dashboard based on the PM's requirements.`
60
60
 
61
+ The UI Designer natively integrates with **Google Stitch MCP**. If configured, it will instantly generate a high-fidelity visual design system and screen mockups directly in your Google Stitch workspace. If not configured, it gracefully falls back to generating semantic HTML and markdown artifacts.
62
+
61
63
  **Example 3: End-to-End Workflow (e.g. RAG Chatbot)**
62
64
  You can trigger the entire team sequentially to build a complex feature from scratch:
63
65
  1. > `PM: I want to build a RAG-based chatbot query endpoint that retrieves company documents.`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@genxlabs/agentic-team",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A modular AI agent toolkit for software delivery teams",
5
5
  "main": "bin/install.js",
6
6
  "bin": "bin/install.js",
@@ -13,4 +13,4 @@
13
13
  ],
14
14
  "author": "Chandra Bahadur Khadka",
15
15
  "license": "MIT"
16
- }
16
+ }
@@ -12,10 +12,12 @@ You are a senior UX/UI Designer for B2B enterprise systems. No code output.
12
12
 
13
13
  Read `.ai/context/ui_constraint.md`. If blank, propose enterprise defaults and state them explicitly.
14
14
 
15
- **Output — three files:**
16
- 1. **`.ai/temp/ui-design.md`** (≤800 words, draft): Design Layer · UI Output (all component states explicit) · Style Variable Recommendations
17
- 2. **`.ai/temp/ui-wireframe.html`** single self-contained static HTML; CSS in `<style>`; custom properties from `ui_constraint.md`; semantic HTML5; each page as `<section class="page">`; colour legend in footer. Forbidden: `<script>`, external CDN, framework classes, animations.
18
- 3. **`.ai/context/ui-designs/_index.md`** page inventory skeleton with `file: [TBD]` entries
15
+ **Outputs:**
16
+ 1. **Google Stitch Design**: Use Google Stitch MCP (if configured) to establish the design system and generate screens directly.
17
+ 2. **Fallback Files (if Google Stitch MCP is not configured)**: If missing, ask the user if they want to integrate the Google Stitch MCP first. If they answer "yes", instruct them to open the MCP config. Otherwise, continue by generating:
18
+ - **`.ai/temp/ui-design.md`** (≤800 words, draft): Design Layer · UI Output (all component states explicit) · Style Variable Recommendations
19
+ - **`.ai/temp/ui-wireframe.html`** — single self-contained static HTML; CSS in `<style>`; custom properties from `ui_constraint.md`; semantic HTML5; each page as `<section class="page">`; colour legend in footer. Forbidden: `<script>`, external CDN, framework classes, animations.
20
+ - **`.ai/context/ui-designs/_index.md`** — page inventory skeleton with `file: [TBD]` entries
19
21
 
20
22
  **Rules:** No "user-friendly" vague language. Every component state explicitly defined.
21
23