Skip to content

Commit dbe9910

Browse files
committed
chore(release): bump version to v3.0.11
1 parent 41073c0 commit dbe9910

File tree

8 files changed

+56
-7
lines changed

8 files changed

+56
-7
lines changed

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"metadata": {
88
"description": "AI DevOps Framework - comprehensive DevOps automation with 25+ service integrations",
9-
"version": "3.0.10"
9+
"version": "3.0.11"
1010
},
1111
"plugins": [
1212
{

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.10
1+
3.0.11

aidevops.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# AI DevOps Framework CLI
44
# Usage: aidevops <command> [options]
55
#
6-
# Version: 3.0.10
6+
# Version: 3.0.11
77

88
set -euo pipefail
99

homebrew/aidevops.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class Aidevops < Formula
66
desc "AI DevOps Framework - AI-assisted development workflows and automation"
77
homepage "https://aidevops.sh"
8-
url "https://github.com/marcusquinn/aidevops/archive/refs/tags/v3.0.10.tar.gz"
8+
url "https://github.com/marcusquinn/aidevops/archive/refs/tags/v3.0.11.tar.gz"
99
sha256 "e72f395b3a58b2739deccb782efb9010653897f84b8882c54b8ae6a4e882d58c"
1010
license "MIT"
1111
head "https://github.com/marcusquinn/aidevops.git", branch: "main"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aidevops",
3-
"version": "3.0.10",
3+
"version": "3.0.11",
44
"description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
55
"type": "module",
66
"bin": {

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
1010
# AI Assistant Server Access Framework Setup Script
1111
# Helps developers set up the framework for their infrastructure
1212
#
13-
# Version: 3.0.10
13+
# Version: 3.0.11
1414
#
1515
# Quick Install:
1616
# npm install -g aidevops && aidevops update (recommended)

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sonar.organization=marcusquinn
55

66
# This is the name and version displayed in the SonarCloud UI
77
sonar.projectName=AI DevOps Framework
8-
sonar.projectVersion=3.0.10
8+
sonar.projectVersion=3.0.11
99

1010
# Path is relative to the sonar-project.properties file
1111
sonar.sources=.agents,configs,templates

todo/tasks/t1537-brief.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# t1537: Refactor shared product concerns from mobile-app-dev to product/
2+
3+
## Session Origin
4+
5+
Identified during review of mobile-app-dev agent suite. The subagents `planning.md`, `ui-design.md`, `monetisation.md`, `onboarding.md`, and `analytics.md` contain universal product concerns that apply to any digital product (mobile apps, browser extensions, web apps, SaaS). They are currently housed under `mobile-app-dev/` which implies mobile-only scope, causing `browser-extension-dev.md` to cross-reference them with awkward "shared with mobile-app-dev" notes.
6+
7+
## What
8+
9+
Extract the five universal product subagents from `mobile-app-dev/` into a new `product/` directory. Add a new `product/growth.md` acquisition playbook. Create a `product.md` entry-point agent. Update `mobile-app-dev.md` and `browser-extension-dev.md` to reference `product/` for shared concerns. Update the AGENTS.md domain index.
10+
11+
## Why
12+
13+
- **Clarity**: `mobile-app-dev/planning.md` is not mobile-specific — it's product validation. Naming it under mobile-app-dev misleads agents and users.
14+
- **Reuse**: `browser-extension-dev.md` already cross-references these files with "Shared with mobile-app-dev" notes — a code smell indicating they belong in a shared location.
15+
- **Extensibility**: A `product/` directory can serve future product types (web apps, SaaS, CLI tools) without coupling to mobile.
16+
- **Growth gap**: No acquisition/growth playbook exists anywhere in the framework. `product/growth.md` fills this gap.
17+
18+
## How
19+
20+
1. Create `product/` directory in `.agents/`
21+
2. Copy (not move — mobile-app-dev keeps its own copies for mobile-specific context) the following to `product/`:
22+
- `planning.md``product/validation.md` (de-mobilified: remove mobile-specific app store search URLs, generalise to "product validation")
23+
- `ui-design.md``product/ui-design.md` (de-mobilified: remove mobile-only platform sections, keep universal design principles)
24+
- `monetisation.md``product/monetisation.md` (de-mobilified: remove RevenueCat-specific mobile SDK code, keep revenue model thinking)
25+
- `onboarding.md``product/onboarding.md` (de-mobilified: remove mobile-specific permission patterns, keep universal onboarding principles)
26+
- `analytics.md``product/analytics.md` (de-mobilified: remove mobile-specific platform tools, keep universal analytics principles)
27+
3. Create `product/growth.md` — acquisition playbook (ASO, SEO, content, paid, referral, community)
28+
4. Create `product.md` entry-point agent with subagent index
29+
5. Update `mobile-app-dev.md`: replace inline shared subagent table entries with references to `product/` equivalents; keep mobile-specific subagents (`expo.md`, `swift.md`, `backend.md`, `notifications.md`, `assets.md`, `testing.md`, `publishing.md`)
30+
6. Update `browser-extension-dev.md`: replace "Shared subagents (from mobile-app-dev/)" table with "Shared subagents (from product/)"
31+
7. Update `.agents/AGENTS.md` domain index: add `product/` row under Browser/Mobile section
32+
33+
## Acceptance Criteria
34+
35+
- [ ] `product/` directory exists with 6 files: `validation.md`, `ui-design.md`, `monetisation.md`, `onboarding.md`, `analytics.md`, `growth.md`
36+
- [ ] `product.md` entry-point agent exists with subagent index table
37+
- [ ] All product/ files have de-mobilified language (no "mobile app" in titles/descriptions where the content is universal)
38+
- [ ] `mobile-app-dev.md` references `product/` for shared concerns, not its own subagents
39+
- [ ] `browser-extension-dev.md` references `product/` not `mobile-app-dev/` for shared subagents
40+
- [ ] `mobile-app-dev/` retains its mobile-specific subagents unchanged
41+
- [ ] AGENTS.md domain index includes `product/` entry
42+
- [ ] `product/growth.md` covers: ASO/SEO, content marketing, paid acquisition, referral/viral, community, launch strategy
43+
44+
## Context
45+
46+
- Worktree: `~/Git/aidevops-refactor-t1537-product-concerns`
47+
- Branch: `refactor/t1537-product-concerns`
48+
- Issue: GH#5092
49+
- Estimate: ~4h

0 commit comments

Comments
 (0)