solana-agent 11.1.1__tar.gz → 11.3.0__tar.gz

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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 11.1.1
3
+ Version: 11.3.0
4
4
  Summary: The Future of Work
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -200,6 +200,19 @@ Solana Agent transforms organizations into living systems that continuously lear
200
200
  Capacity-aware scheduling to prevent agent overloading.
201
201
  Schedule analytics and efficiency metrics.
202
202
 
203
+ - **🏢 Comprehensive Resource Management System:**
204
+ Complete resource scheduling and booking infrastructure.
205
+ Resource categorization with customizable attributes and capabilities.
206
+ Intelligent conflict detection and prevention for bookings.
207
+ Location-aware resource tracking with hierarchical location model.
208
+ Availability management with customizable recurring schedules.
209
+ User-level booking authorization with permission controls.
210
+ Resource discovery by type, capacity, and available features.
211
+ Command-line interface for resource management.
212
+ Booking lifecycle management with confirmation and cancellation.
213
+ Time-aware resource scheduling across time zones.
214
+ Resource utilization analytics and optimization.
215
+
203
216
  - **📊 Performance Optimization Framework:**
204
217
  Integrated Net Promoter Score (NPS) system for interaction quality measurement.
205
218
  Automatic satisfaction surveys after ticket resolution.
@@ -212,8 +225,14 @@ Solana Agent transforms organizations into living systems that continuously lear
212
225
  Automated complexity assessment for incoming tasks.
213
226
  Task decomposition into subtasks with dependencies.
214
227
  Intelligent workload distribution based on agent capacity.
228
+ Resource requirements identification for each subtask.
229
+ Automatic resource allocation based on task needs.
230
+ Resource-aware scheduling to prevent conflicts.
231
+ Integrated resource and agent availability checking.
232
+ Command-line interface for resource allocation to tasks.
215
233
  Visual progress tracking with completion estimates.
216
- Prioritization based on urgency, importance, and dependencies.
234
+ Prioritization based on urgency, importance, and dependencies.
235
+ Resource utilization optimization across project timelines.
217
236
 
218
237
  - **🛡️ Governance Framework:**
219
238
  Define organization-wide values and operating principles in code.
@@ -324,7 +343,7 @@ config = {
324
343
  "api_key": "your-pinecone-key",
325
344
  "index": "your-index"
326
345
  },
327
- "plugins_dir": "plugins",
346
+ "stalled_ticket_timeout": 60,
328
347
  "ai_agents": [
329
348
  {
330
349
  "name": "research_specialist",
@@ -172,6 +172,19 @@ Solana Agent transforms organizations into living systems that continuously lear
172
172
  Capacity-aware scheduling to prevent agent overloading.
173
173
  Schedule analytics and efficiency metrics.
174
174
 
175
+ - **🏢 Comprehensive Resource Management System:**
176
+ Complete resource scheduling and booking infrastructure.
177
+ Resource categorization with customizable attributes and capabilities.
178
+ Intelligent conflict detection and prevention for bookings.
179
+ Location-aware resource tracking with hierarchical location model.
180
+ Availability management with customizable recurring schedules.
181
+ User-level booking authorization with permission controls.
182
+ Resource discovery by type, capacity, and available features.
183
+ Command-line interface for resource management.
184
+ Booking lifecycle management with confirmation and cancellation.
185
+ Time-aware resource scheduling across time zones.
186
+ Resource utilization analytics and optimization.
187
+
175
188
  - **📊 Performance Optimization Framework:**
176
189
  Integrated Net Promoter Score (NPS) system for interaction quality measurement.
177
190
  Automatic satisfaction surveys after ticket resolution.
@@ -184,8 +197,14 @@ Solana Agent transforms organizations into living systems that continuously lear
184
197
  Automated complexity assessment for incoming tasks.
185
198
  Task decomposition into subtasks with dependencies.
186
199
  Intelligent workload distribution based on agent capacity.
200
+ Resource requirements identification for each subtask.
201
+ Automatic resource allocation based on task needs.
202
+ Resource-aware scheduling to prevent conflicts.
203
+ Integrated resource and agent availability checking.
204
+ Command-line interface for resource allocation to tasks.
187
205
  Visual progress tracking with completion estimates.
188
- Prioritization based on urgency, importance, and dependencies.
206
+ Prioritization based on urgency, importance, and dependencies.
207
+ Resource utilization optimization across project timelines.
189
208
 
190
209
  - **🛡️ Governance Framework:**
191
210
  Define organization-wide values and operating principles in code.
@@ -296,7 +315,7 @@ config = {
296
315
  "api_key": "your-pinecone-key",
297
316
  "index": "your-index"
298
317
  },
299
- "plugins_dir": "plugins",
318
+ "stalled_ticket_timeout": 60,
300
319
  "ai_agents": [
301
320
  {
302
321
  "name": "research_specialist",
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "11.1.1"
3
+ version = "11.3.0"
4
4
  description = "The Future of Work"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
@@ -33,7 +33,7 @@ qdrant-client = "^1.13.3"
33
33
  pytest = "^8.3.5"
34
34
  pytest-cov = "^6.0.0"
35
35
  pytest-asyncio = "^0.25.3"
36
- uv = "^0.6.5"
36
+ uv = "^0.6.6"
37
37
 
38
38
  [build-system]
39
39
  requires = ["poetry-core>=1.0.0"]