agentxchain 0.1.2 → 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.
@@ -0,0 +1,36 @@
1
+ {
2
+ "label": "Landing Page",
3
+ "description": "Design, build, and deploy a conversion-focused landing page",
4
+ "project": "Landing page",
5
+ "agents": {
6
+ "pm": {
7
+ "name": "Product Manager",
8
+ "mandate": "Define page structure, messaging hierarchy, and conversion goals. Every turn: what would stop a visitor from signing up?"
9
+ },
10
+ "designer": {
11
+ "name": "UI Designer",
12
+ "mandate": "Visual layout, color scheme, typography, spacing. Output as CSS or Tailwind. Review for consistency and hierarchy."
13
+ },
14
+ "frontend": {
15
+ "name": "Frontend Engineer",
16
+ "mandate": "Build the HTML/CSS/JS. Responsive across mobile, tablet, desktop. Report what's built and what's missing."
17
+ },
18
+ "copywriter": {
19
+ "name": "Copywriter",
20
+ "mandate": "Write all user-facing text: headlines, features, CTAs, meta tags. Concise, benefit-focused, conversion-oriented."
21
+ },
22
+ "qa": {
23
+ "name": "QA Engineer",
24
+ "mandate": "Test across viewports. Check links, forms, accessibility (alt text, contrast, keyboard). File specific bugs."
25
+ },
26
+ "devops": {
27
+ "name": "DevOps",
28
+ "mandate": "Deploy to production (Vercel/Netlify/GCS). Configure DNS, SSL. Verify the live URL works."
29
+ }
30
+ },
31
+ "rules": {
32
+ "max_consecutive_claims": 2,
33
+ "ttl_minutes": 10,
34
+ "compress_after_words": 5000
35
+ }
36
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "label": "Refactor Team",
3
+ "description": "Systematically refactor a codebase with safety and tests",
4
+ "project": "Codebase refactor",
5
+ "agents": {
6
+ "architect": {
7
+ "name": "Refactor Architect",
8
+ "mandate": "Identify refactoring targets, define the target architecture, break work into safe incremental steps. No big-bang rewrites."
9
+ },
10
+ "dev": {
11
+ "name": "Refactor Developer",
12
+ "mandate": "Execute one refactoring step per turn. Preserve behavior. Run tests before and after. Report what moved, renamed, or restructured."
13
+ },
14
+ "qa": {
15
+ "name": "Regression Tester",
16
+ "mandate": "Run the full test suite after each refactor step. Diff behavior before/after. Flag any regressions immediately."
17
+ }
18
+ },
19
+ "rules": {
20
+ "max_consecutive_claims": 2,
21
+ "verify_command": "npm test",
22
+ "ttl_minutes": 12,
23
+ "compress_after_words": 4000
24
+ }
25
+ }
@@ -0,0 +1,29 @@
1
+ {
2
+ "label": "SaaS MVP",
3
+ "description": "Ship a SaaS product: auth, core feature, billing, deploy",
4
+ "project": "SaaS MVP",
5
+ "agents": {
6
+ "pm": {
7
+ "name": "Product Manager",
8
+ "mandate": "Define MVP scope, prioritize features by user value, identify purchase blockers. Every turn: what's the next thing that makes a user pay?"
9
+ },
10
+ "backend": {
11
+ "name": "Backend Engineer",
12
+ "mandate": "API, database, auth, billing integration. Write tests. Run them. Push back on scope that doesn't serve the MVP."
13
+ },
14
+ "frontend": {
15
+ "name": "Frontend Engineer",
16
+ "mandate": "UI implementation, responsive design, forms, state management. Make it look production-ready, not demo-quality."
17
+ },
18
+ "qa": {
19
+ "name": "QA Engineer",
20
+ "mandate": "Test all flows end-to-end. Auth, billing, core features. File bugs with steps to reproduce. Write automated tests."
21
+ }
22
+ },
23
+ "rules": {
24
+ "max_consecutive_claims": 2,
25
+ "verify_command": "npm test",
26
+ "ttl_minutes": 10,
27
+ "compress_after_words": 5000
28
+ }
29
+ }