achira-wf 4.1.0 β†’ 4.1.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.
@@ -1,7 +1,7 @@
1
1
  {
2
- "engine": "3.x",
2
+ "engine": "4.x",
3
3
  "engine_min": "3.0.0",
4
- "version": "4.0.0",
4
+ "version": "4.1.1",
5
5
  "templates": {
6
6
  "react": {
7
7
  "workflow": "react+vite.md",
package/README.md CHANGED
@@ -51,62 +51,65 @@ _This command installs the agents, skills, and workflows into a `.achira` direct
51
51
 
52
52
  ## πŸš€ One-Click Scaffolding
53
53
 
54
- Generate production-ready foundations with pre-configured directory structures, absolute imports, testing suites, and linter rules.
54
+ Achira Workflow OS enables high-performance scaffolding directly through your AI assistant. Once `achira-wf init` is run, all templates become available as **slash commands** in your IDE.
55
55
 
56
56
  ```bash
57
57
  # Web Foundations
58
- achira-wf create react # React + Vite SPA
59
- achira-wf create next # Next.js App Router (Fullstack)
60
- achira-wf create html # Vanilla HTML + CSS + JS (Vite)
58
+ /react # React + Vite SPA
59
+ /next # Next.js App Router (Fullstack)
60
+ /html # Vanilla HTML + CSS + JS (Vite)
61
61
 
62
62
  # Verticals
63
- achira-wf create saas # Next.js + Supabase Auth/DB + Stripe
64
- achira-wf create landing-page # SEO-Optimized Marketing Page
63
+ /saas # Next.js + Supabase Auth/DB + Stripe
64
+ /landing-page # SEO-Optimized Marketing Page
65
65
 
66
66
  # Apps & Desktop
67
- achira-wf create flutter # Multi-platform Dart 3 (Riverpod)
68
- achira-wf create avalonia # C# Desktop (Zafiro/MVVM)
67
+ /flutter # Multi-platform Dart 3 (Riverpod)
68
+ /avalonia # C# Desktop (Zafiro/MVVM)
69
69
 
70
70
  # specialized
71
- achira-wf create shopify # Apps, Extensions, or Themes
72
- achira-wf create unity # Unity 6 LTS C# Game Dev
73
- achira-wf create python-backend # FastAPI / Django (managed by uv)
74
- achira-wf create database # Schema Design & RLS Policies
71
+ /shopify # Apps, Extensions, or Themes
72
+ /unity # Unity 6 LTS C# Game Dev
73
+ /python-backend # FastAPI / Django (managed by uv)
74
+ /database # Schema Design & RLS Policies
75
75
  ```
76
76
 
77
77
  ---
78
78
 
79
- ## πŸ€– The Elite 20 Agents
79
+ ## πŸ€– The Elite Agents
80
80
 
81
81
  Achira OS deploys a specialized task force for every domain.
82
82
 
83
- | Squadron | Role |
84
- | :------------------ | :----------------------------------------------------------------------------------------- |
85
- | **The Strategists** | `orchestrator`, `project-planner`, `product-owner`, `ai-specialist` |
86
- | **The Builders** | `frontend-specialist`, `backend-specialist`, `mobile-developer` |
87
- | **The Sentinels** | `security-auditor`, `penetration-tester`, `qa-automation-engineer` |
88
- | **The Analysts** | `database-architect`, `code-archae考叀ologist`, `performance-optimizer`, `devops-engineer` |
83
+ | Squadron | Role |
84
+ | :------------------ | :------------------------------------------------------------------------------------- |
85
+ | **The Strategists** | `orchestrator`, `project-planner`, `product-owner`, `ai-specialist` |
86
+ | **The Builders** | `frontend-specialist`, `backend-specialist`, `mobile-developer` |
87
+ | **The Sentinels** | `security-auditor`, `penetration-tester`, `qa-automation-engineer` |
88
+ | **The Analysts** | `database-architect`, `code-archaeologist`, `performance-optimizer`, `devops-engineer` |
89
89
 
90
90
  ---
91
91
 
92
92
  ## πŸ›  Advanced CLI Commands
93
93
 
94
- | Command | Purpose |
95
- | :---------------------------- | :----------------------------------------------------------- |
96
- | `achira-wf init` | Install or repair the `.achira/` core in the current folder. |
97
- | `achira-wf create <template>` | Scaffold a project (react, next, html). |
98
- | `achira-wf list` | View all registered workflows and templates. |
99
- | `achira-wf doctor` | Check system integrity and agent health. |
94
+ While most day-to-day work happens via slash commands, the CLI provides core lifecycle tools.
95
+
96
+ | Command | Purpose |
97
+ | :----------------- | :----------------------------------------------------------- |
98
+ | `achira-wf init` | Install or repair the `.achira/` core in the current folder. |
99
+ | `achira-wf list` | View all registered workflows and templates. |
100
+ | `achira-wf doctor` | Check system integrity and agent health. |
100
101
 
101
102
  ---
102
103
 
103
- ## οΏ½ Operational Workflows
104
+ ## 🍱 Operational Workflows
104
105
 
105
- Access powerful slash commands in your AI assistant once the OS is initialized:
106
+ Access powerful slash commands once the OS is initialized:
106
107
 
107
108
  - `/orchestrate`: Lead a cross-domain squad of agents.
108
109
  - `/plan`: Generate deep implementation blueprints.
109
110
  - `/ui-ux-pro-max`: Access 50+ unique design styles and premium UI patterns.
111
+ - `/debug`: Systematically investigate and resolve bugs.
112
+ - `/test`: Generate comprehensive test suites.
110
113
 
111
114
  ## 🍱 Visual Showcase
112
115
 
package/cli.js CHANGED
@@ -91,7 +91,18 @@ program
91
91
  );
92
92
  }
93
93
 
94
- // 3. Print registry summary
94
+ // 3. Sync .cursorrules for automatic IDE rules
95
+ try {
96
+ const cursorRulesPath = path.join(target, ".cursorrules");
97
+ const geminiRulesPath = path.join(ACHIRA_DIR, "rules", "GEMINI.md");
98
+ await fs.remove(cursorRulesPath);
99
+ await fs.ensureSymlink(geminiRulesPath, cursorRulesPath, "file");
100
+ console.log(chalk.green(" βœ” Linked .cursorrules β†’ .achira/rules/GEMINI.md\n"));
101
+ } catch (err) {
102
+ console.log(chalk.yellow(` ⚠ Could not link .cursorrules: ${err.message}\n`));
103
+ }
104
+
105
+ // 4. Print registry summary
95
106
  const registryFile = path.join(dest, "workflows", "registry.json");
96
107
  if (fs.existsSync(registryFile)) {
97
108
  try {
@@ -110,7 +121,7 @@ program
110
121
  console.log(chalk.cyan(" Project Scaffolds:\n"));
111
122
  for (const [key, val] of Object.entries(registry.templates || {})) {
112
123
  console.log(
113
- chalk.white(` achira-wf create ${key}`) +
124
+ chalk.white(` /${key}`) +
114
125
  chalk.gray(` β€” ${val.description}`),
115
126
  );
116
127
  }
@@ -174,14 +185,14 @@ program
174
185
  process.exit(1);
175
186
  }
176
187
 
177
- console.log(chalk.cyan(`\n achira-wf create ${template}\n`));
188
+ console.log(chalk.cyan(`\n /${template}\n`));
178
189
  console.log(chalk.green(` βœ” Template: ${entry.description}`));
179
190
  console.log(
180
191
  chalk.green(` βœ” Workflow: .achira/workflows/${entry.workflow}`),
181
192
  );
182
193
  console.log(
183
194
  chalk.white(
184
- `\n β†’ Open the workflow file and follow the steps, or use the /create slash command.\n`,
195
+ `\n β†’ Follow the workflow steps in the IDE, or use the /${template} slash command.\n`,
185
196
  ),
186
197
  );
187
198
  });
@@ -219,7 +230,7 @@ program
219
230
  console.log(chalk.cyan(" Project Scaffolds:\n"));
220
231
  for (const [key, val] of Object.entries(registry.templates || {})) {
221
232
  console.log(
222
- chalk.white(` achira-wf create ${key}`) +
233
+ chalk.white(` /${key}`) +
223
234
  chalk.gray(` β€” ${val.description}`),
224
235
  );
225
236
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "achira-wf",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "Achira Workflow OS β€” AI-driven development ecosystem with 21 agents, 7 master pillars, and 22 project scaffolds.",
5
5
  "main": "cli.js",
6
6
  "bin": {