@automagik/genie 4.260405.12 → 4.260405.14
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.
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "genie",
|
|
13
|
-
"version": "4.260405.
|
|
13
|
+
"version": "4.260405.14",
|
|
14
14
|
"source": "./plugins/genie",
|
|
15
15
|
"description": "Human-AI partnership for Claude Code. Share a terminal, orchestrate workers, evolve together. Brainstorm ideas, wish them into plans, make with parallel agents, ship as one team. A coding genie that grows with your project."
|
|
16
16
|
}
|
package/Makefile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.PHONY: build build-app tauri tauri-dev lint lint-fix format typecheck test check clean
|
|
1
|
+
.PHONY: build build-app tauri tauri-app tauri-dmg tauri-dev lint lint-fix format typecheck test check clean
|
|
2
2
|
|
|
3
3
|
build:
|
|
4
4
|
bun run build
|
|
@@ -23,8 +23,25 @@ test:
|
|
|
23
23
|
|
|
24
24
|
check: lint typecheck test
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
TAURI_APP_DIR := packages/genie-app
|
|
27
|
+
TAURI_BUNDLE := $(TAURI_APP_DIR)/src-tauri/target/release/bundle
|
|
28
|
+
TAURI_VERSION := $(shell jq -r '.version' $(TAURI_APP_DIR)/src-tauri/tauri.conf.json)
|
|
29
|
+
TAURI_ARCH := $(shell uname -m)
|
|
30
|
+
TAURI_DMG := Genie_$(TAURI_VERSION)_$(TAURI_ARCH).dmg
|
|
31
|
+
|
|
32
|
+
tauri: tauri-app tauri-dmg ## Build Tauri .app + .dmg
|
|
33
|
+
|
|
34
|
+
tauri-app: ## Build Tauri .app only (skip DMG)
|
|
35
|
+
cd $(TAURI_APP_DIR) && cargo tauri build --bundles app
|
|
36
|
+
|
|
37
|
+
tauri-dmg: ## Package .app into .dmg with Applications symlink
|
|
38
|
+
@test -d "$(TAURI_BUNDLE)/macos/Genie.app" || (echo "Run 'make tauri-app' first" && exit 1)
|
|
39
|
+
@rm -rf /tmp/genie-dmg-stage && mkdir -p /tmp/genie-dmg-stage
|
|
40
|
+
cp -R "$(TAURI_BUNDLE)/macos/Genie.app" /tmp/genie-dmg-stage/
|
|
41
|
+
ln -s /Applications /tmp/genie-dmg-stage/Applications
|
|
42
|
+
hdiutil create -volname "Genie" -srcfolder /tmp/genie-dmg-stage -ov -format UDZO "$(TAURI_DMG)"
|
|
43
|
+
@rm -rf /tmp/genie-dmg-stage
|
|
44
|
+
@echo "✓ $(TAURI_DMG)"
|
|
28
45
|
|
|
29
46
|
tauri-dev:
|
|
30
47
|
cd packages/genie-app && cargo tauri dev
|
package/package.json
CHANGED
|
@@ -27,6 +27,11 @@
|
|
|
27
27
|
},
|
|
28
28
|
"bundle": {
|
|
29
29
|
"active": true,
|
|
30
|
-
"targets": "all"
|
|
30
|
+
"targets": "all",
|
|
31
|
+
"category": "DeveloperTool",
|
|
32
|
+
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
|
|
33
|
+
"macOS": {
|
|
34
|
+
"minimumSystemVersion": "10.13"
|
|
35
|
+
}
|
|
31
36
|
}
|
|
32
37
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genie",
|
|
3
|
-
"version": "4.260405.
|
|
3
|
+
"version": "4.260405.14",
|
|
4
4
|
"description": "Human-AI partnership for Claude Code. Share a terminal, orchestrate workers, evolve together. Brainstorm ideas, turn them into wishes, execute with /work, validate with /review, and ship as one team.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Namastex Labs"
|