zuzu 0.2.1-java → 0.2.2-java

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.
data/warble.rb ADDED
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Warbler configuration for packaging Zuzu apps as standalone .jar / .war.
4
+ # Usage: warble jar
5
+ #
6
+ # The resulting .jar can be run with:
7
+ # java -XstartOnFirstThread -jar my_app.jar (macOS)
8
+ # java -jar my_app.jar (Linux / Windows)
9
+
10
+ Warbler::Config.new do |config|
11
+ config.features = %w[executable]
12
+ config.dirs = %w[lib templates]
13
+ config.includes = FileList['app.rb', 'Gemfile']
14
+ # models/ is NOT bundled — place model files next to the jar at runtime
15
+
16
+ # SWT native fragments are pulled in by glimmer-dsl-swt;
17
+ # Warbler bundles them automatically.
18
+ config.bundler = true
19
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuzu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: java
6
6
  authors:
7
7
  - Abhishek Parolkar
@@ -41,46 +41,54 @@ dependencies:
41
41
  name: webrick
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ">="
44
+ - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.7'
47
47
  type: :runtime
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - ">="
51
+ - - "~>"
52
52
  - !ruby/object:Gem::Version
53
53
  version: '1.7'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: bigdecimal
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - ">="
58
+ - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0'
60
+ version: '3.1'
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - ">="
65
+ - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '0'
67
+ version: '3.1'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: logger
70
70
  requirement: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - ">="
72
+ - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '0'
74
+ version: '1.5'
75
75
  type: :runtime
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - ">="
79
+ - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '0'
82
- description: Zuzu is a framework for building local-first, privacy-respecting desktop
83
- AI assistants using JRuby, Glimmer DSL for SWT, SQLite, and llamafile.
81
+ version: '1.5'
82
+ description: Every installed application is an orchestrator of OS capabilities. LLMs
83
+ are simply a more expressive interface for that orchestration. Zuzu is a framework
84
+ for building installable, AI-native desktop apps where the intelligence runs on
85
+ the user's hardware — not in a data center. It uses JRuby and Glimmer DSL for SWT
86
+ for the GUI, Mozilla's llamafile for local LLM inference, and SQLite (via AgentFS)
87
+ as a sandboxed virtual filesystem the agent can read and write without touching
88
+ the host OS. Apps package as a single cross-platform .jar — users download, double-click,
89
+ run. No cloud. No subscriptions. No infrastructure to operate. Scaffolded projects
90
+ include CLAUDE.md and Claude Code skills pre-tuned to Zuzu's patterns, so coding
91
+ agents generate correct framework code from the start.
84
92
  email:
85
93
  - abhishek@parolkar.com
86
94
  executables:
@@ -109,13 +117,20 @@ files:
109
117
  - lib/zuzu/tools/shell_tool.rb
110
118
  - lib/zuzu/tools/web_tool.rb
111
119
  - lib/zuzu/version.rb
120
+ - templates/.claude/skills/add-tool/SKILL.md
121
+ - templates/.claude/skills/customize/SKILL.md
122
+ - templates/.claude/skills/debug/SKILL.md
123
+ - templates/.claude/skills/setup/SKILL.md
124
+ - templates/AGENTS.md
125
+ - templates/CLAUDE.md
112
126
  - templates/app.rb
127
+ - warble.rb
113
128
  homepage: https://github.com/parolkar/zuzu
114
129
  licenses:
115
130
  - MIT
116
131
  metadata:
117
132
  homepage_uri: https://github.com/parolkar/zuzu
118
- source_code_uri: https://github.com/parolkar/zuzu
133
+ source_code_uri: https://github.com/parolkar/zuzu/tree/main
119
134
  bug_tracker_uri: https://github.com/parolkar/zuzu/issues
120
135
  rdoc_options: []
121
136
  require_paths:
@@ -133,5 +148,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
148
  requirements: []
134
149
  rubygems_version: 3.7.2
135
150
  specification_version: 4
136
- summary: Local-first agentic desktop apps with JRuby.
151
+ summary: JRuby framework for AI-native desktop apps local LLM, single .jar distribution,
152
+ Claude Code-ready scaffolding.
137
153
  test_files: []