aidevops 3.14.35 → 3.14.37

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
@@ -107,6 +107,8 @@ The result: an AI operations platform that manages projects across every busines
107
107
  - `aidevops secret` - Manage secrets (gopass encrypted, AI-safe)
108
108
  - `aidevops security` - Full security assessment (posture, secrets, supply chain)
109
109
  - `/onboarding` - Interactive setup wizard (in AI assistant)
110
+ - `/design-artifact` - Route artifact-first UI, deck, email, poster, and mobile mockup work
111
+ - `/open-design` - Manage the optional Open Design companion studio
110
112
 
111
113
  ### Agent Structure
112
114
 
@@ -217,6 +219,34 @@ aidevops update-tools # Check and update installed tools
217
219
  aidevops uninstall # Remove aidevops
218
220
  ```
219
221
 
222
+ ### Optional Design Artifact Studio
223
+
224
+ aidevops now treats design as a self-contained stack with optional peripherals:
225
+
226
+ - **Google `DESIGN.md` standard**: AI-readable design systems with YAML tokens, linting, previews, and brand/style libraries (`.agents/tools/design/design-md.md`).
227
+ - **Design agents and skills**: brand identity, palettes, UI inspiration, product UI rules, shadcn/Tailwind/UI skills, Nothing-style design, email rendering, Remotion/video, and browser-based UI verification.
228
+ - **Artifact routing commands**: `/design-artifact` decides whether to use aidevops-native implementation or a companion artifact studio; `/open-design` manages optional Open Design workflows.
229
+ - **Verification gates**: Playwright screenshots, accessibility/contrast checks, email rendering, deck export/fidelity checks, and media smoke tests before generated artifacts are accepted.
230
+
231
+ Optional companion: [Open Design](https://github.com/nexu-io/open-design) by nexu-io (Apache-2.0) is supported as a **peripheral** for live sandboxed previews, design-skill pickers, `.od/` artifact workspaces, and HTML/PDF/PPTX/ZIP-style exports. aidevops remains canonical for agents, skill ingestion, Google `DESIGN.md`, local hosting, and verification.
232
+
233
+ ```bash
234
+ # Inspect optional companion status
235
+ open-design-helper.sh status
236
+
237
+ # Print safe install plan only
238
+ open-design-helper.sh install
239
+
240
+ # Install alongside aidevops only after opting in
241
+ open-design-helper.sh install --execute
242
+
243
+ # Start through aidevops local HTTPS if Open Design only prints localhost
244
+ open-design-helper.sh start --https-local open-design
245
+ # → https://open-design.local when localdev is configured
246
+ ```
247
+
248
+ Imported Open Design skills are not copied verbatim. They are evaluated through aidevops build-agent methodology, deduplicated against existing agents, flattened into aidevops `*-skill.md` structure, attributed to upstream, and given verification commands. See `.agents/tools/design/open-design-ingestion.md` for the full skill-value matrix.
249
+
220
250
  **Project tracking:** When you run `aidevops init`, the project is automatically registered in `~/.config/aidevops/repos.json`. Running `aidevops update` checks all registered projects for version updates.
221
251
 
222
252
  ### **Use aidevops in Any Project**
@@ -1142,6 +1172,15 @@ The setup script offers to install these tools automatically.
1142
1172
  - **[CrewAI](https://crewai.com/)**: Multi-agent teams with role-based orchestration (MIT, localhost:8501)
1143
1173
  - **[AutoGen](https://microsoft.github.io/autogen/)**: Microsoft's agentic AI framework with MCP support (MIT, localhost:8081)
1144
1174
 
1175
+ ### **Design, UI & Artifact Creation**
1176
+
1177
+ - **Google `DESIGN.md` standard**: Canonical AI-readable design systems with YAML tokens, Markdown rationale, linting, Tailwind/DTCG export, and preview generation. aidevops keeps `DESIGN.md` as the source of truth for UI agents.
1178
+ - **Design library**: 54 brand examples and 12 original style archetypes for agent-ready visual direction, plus palette, brand identity, and UI inspiration workflows.
1179
+ - **Artifact commands**: `/design-artifact` routes prototype, deck, email, poster, social carousel, and mobile mockup requests; `/open-design` manages optional Open Design companion workflows.
1180
+ - **[Open Design](https://github.com/nexu-io/open-design)** *Optional peripheral*: Local-first design artifact studio by nexu-io (Apache-2.0) for sandboxed previews, design-skill pickers, `.od/` workspaces, and exports. It installs alongside aidevops only when requested; selected skills are ingested via aidevops build-agent optimisation, not imported verbatim.
1181
+ - **Local HTTPS previews**: `localdev-helper.sh` can wrap Open Design or other dev servers with mkcert-backed `.local` routes when tools only expose localhost.
1182
+ - **Verification**: `workflows/ui-verification.md`, `email-design-test-helper.sh`, design preview screenshots, and deck/media smoke tests provide evidence before generated artifacts ship.
1183
+
1145
1184
  ### **Video Creation**
1146
1185
 
1147
1186
  - **[Remotion](https://remotion.dev/)**: Programmatic video creation with React - animations, compositions, media handling, captions
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.14.35
1
+ 3.14.37
package/aidevops.sh CHANGED
@@ -5,7 +5,7 @@
5
5
  # AI DevOps Framework CLI
6
6
  # Usage: aidevops <command> [options]
7
7
  #
8
- # Version: 3.14.35
8
+ # Version: 3.14.37
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.14.35",
3
+ "version": "3.14.37",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
package/setup.sh CHANGED
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.14.35
15
+ # Version: 3.14.37
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)