sweagent 0.0.1 → 0.0.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sweagent",
3
- "version": "0.0.1",
4
- "description": "Multi-provider AI software engineering agent framework with tool calling support",
3
+ "version": "0.0.2",
4
+ "description": "Enterprise-grade domain-specialized AI agents for software planning — multi-stage pipelines, sub-agent orchestration, and structured outputs for planning, requirements, DB design, and frontend generation",
5
5
  "author": {
6
6
  "name": "sijeeshmiziha",
7
7
  "email": "sijeeshmonbalan@gmail.com",
@@ -39,6 +39,9 @@
39
39
  "tokens:verbose": "tsx .scripts/token-calculator.ts --verbose",
40
40
  "tokens:json": "tsx .scripts/token-calculator.ts --json",
41
41
  "ci": "npm run typecheck && npm run lint && npm run test:unit && npm run build",
42
+ "release:patch": "npm version patch && git push origin main --tags",
43
+ "release:minor": "npm version minor && git push origin main --tags",
44
+ "release:major": "npm version major && git push origin main --tags",
42
45
  "prepublishOnly": "npm run ci",
43
46
  "prepare": "husky"
44
47
  },
@@ -59,6 +62,11 @@
59
62
  ],
60
63
  "keywords": [
61
64
  "ai",
65
+ "ai-coding",
66
+ "claude-code",
67
+ "codex",
68
+ "cursor",
69
+ "planning",
62
70
  "swe",
63
71
  "software-engineering",
64
72
  "agents",
@@ -75,6 +83,9 @@
75
83
  "@ai-sdk/openai": "^3.0.0",
76
84
  "@modelcontextprotocol/sdk": "^1.26.0",
77
85
  "ai": "^6.0.0",
86
+ "handlebars": "^4.7.8",
87
+ "pino": "^9.6.0",
88
+ "pino-pretty": "^13.0.0",
78
89
  "zod": "^4.1.8"
79
90
  },
80
91
  "devDependencies": {