@vfarcic/dot-ai 0.10.0 → 0.12.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.
Files changed (2) hide show
  1. package/README.md +12 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -55,7 +55,7 @@ Perfect for conversational deployments with AI agents:
55
55
  "mcpServers": {
56
56
  "dot-ai": {
57
57
  "command": "npx",
58
- "args": ["-y", "--package=@vfarcic/dot-ai", "dot-ai-mcp"],
58
+ "args": ["-y", "--package=@vfarcic/dot-ai@latest", "dot-ai-mcp"],
59
59
  "env": {
60
60
  "ANTHROPIC_API_KEY": "your_key_here",
61
61
  "DOT_AI_SESSION_DIR": "./tmp/sessions",
@@ -104,23 +104,26 @@ Agent: ✅ Successfully deployed! Your application is running.
104
104
  For scripting and direct usage (requires global installation):
105
105
 
106
106
  ```bash
107
+ # 0. Create session directory (required)
108
+ mkdir -p tmp/sessions
109
+
107
110
  # 1. Get AI recommendations (includes cluster discovery)
108
- dot-ai recommend --intent "deploy a web application" --session-dir ./tmp
111
+ dot-ai recommend --intent "deploy a web application" --session-dir tmp/sessions
109
112
 
110
113
  # 2. Choose a solution
111
- dot-ai choose-solution --solution-id sol_xxx --session-dir ./tmp
114
+ dot-ai choose-solution --solution-id sol_xxx --session-dir tmp/sessions
112
115
 
113
116
  # 3. Configure step-by-step (all stages required)
114
- dot-ai answer-question --solution-id sol_xxx --stage required --answers {...}
115
- dot-ai answer-question --solution-id sol_xxx --stage basic --answers {}
116
- dot-ai answer-question --solution-id sol_xxx --stage advanced --answers {}
117
- dot-ai answer-question --solution-id sol_xxx --stage open --answers {"open":"N/A"}
117
+ dot-ai answer-question --solution-id sol_xxx --stage required --answers {...} --session-dir tmp/sessions
118
+ dot-ai answer-question --solution-id sol_xxx --stage basic --answers {} --session-dir tmp/sessions
119
+ dot-ai answer-question --solution-id sol_xxx --stage advanced --answers {} --session-dir tmp/sessions
120
+ dot-ai answer-question --solution-id sol_xxx --stage open --answers {"open":"N/A"} --session-dir tmp/sessions
118
121
 
119
122
  # 4. Generate manifests
120
- dot-ai generate-manifests --solution-id sol_xxx --session-dir ./tmp
123
+ dot-ai generate-manifests --solution-id sol_xxx --session-dir tmp/sessions
121
124
 
122
125
  # 5. Deploy to cluster
123
- dot-ai deploy-manifests --solution-id sol_xxx --session-dir ./tmp
126
+ dot-ai deploy-manifests --solution-id sol_xxx --session-dir tmp/sessions
124
127
  ```
125
128
 
126
129
  📖 **[Complete CLI Guide →](docs/cli-guide.md)** - Detailed command-line interface documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vfarcic/dot-ai",
3
- "version": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "description": "Universal Kubernetes application deployment agent with CLI and MCP interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",