bizy-ai 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

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.
agent/cli.py CHANGED
@@ -224,5 +224,24 @@ def stats():
224
224
  console.print(f"\n[bold]Today:[/bold] {len(today_tasks)} tasks scheduled\n")
225
225
  task_mgr.close()
226
226
 
227
+ # DAILY/WEEKLY REVIEWS
228
+ @cli.command()
229
+ def brief():
230
+ """Generate morning briefing"""
231
+ from agent.morning_brief import run_morning_briefing
232
+ run_morning_briefing()
233
+
234
+ @cli.command()
235
+ def review():
236
+ """Generate evening review"""
237
+ from agent.evening_review import run_evening_review
238
+ run_evening_review()
239
+
240
+ @cli.command()
241
+ def weekly():
242
+ """Generate weekly review"""
243
+ from agent.weekly_review import run_weekly_review
244
+ run_weekly_review()
245
+
227
246
  if __name__ == "__main__":
228
247
  cli()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bizy-ai
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: AI-powered business planning and execution agent
5
5
  Author: Reid Chatham
6
6
  License: MIT
@@ -40,7 +40,11 @@ Requires-Dist: jinja2>=3.1.2
40
40
  Dynamic: license-file
41
41
  Dynamic: requires-python
42
42
 
43
- # Business Agent - AI-Powered Daily Business Execution Assistant
43
+ # Bizy AI - AI-Powered Business Planning & Execution Agent
44
+
45
+ [![PyPI version](https://badge.fury.io/py/bizy-ai.svg)](https://badge.fury.io/py/bizy-ai)
46
+ [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
47
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
44
48
 
45
49
  An autonomous AI agent that runs daily to help you execute your business plan, manage tasks, conduct research, and stay on track toward your goals.
46
50
 
@@ -1,18 +1,18 @@
1
1
  agent/__init__.py,sha256=pHeIDi-ibuwZqaNqxdIDRvzedWtPywssbaYIDawMcvQ,88
2
- agent/cli.py,sha256=5Qyw7QYDHf-xN6OHcdhBay90RCdgk3gMd7WK97oLs78,6806
2
+ agent/cli.py,sha256=8raEuVh3rEDRQS8QGROu_ONiGdEPAwZEP2-gshrb3mA,7264
3
3
  agent/core.py,sha256=UILN_DjsSr91KN3YyQaD_cZgF9vW8m827-W0pZMTUnM,6561
4
+ agent/evening_review.py,sha256=Y4d-t62zfaufM8mnSvkhBBZ0wMw1R8jtj4cN8r30t4E,4929
4
5
  agent/models.py,sha256=6bDSLXRxztF50J0AoTi5PX3ckf74oPhyQXfOccfVGdk,7937
6
+ agent/morning_brief.py,sha256=zcu4nUOnIQtoZTiK1XlEjuudiUAABrps3PvAwt2Avmk,4732
5
7
  agent/planner.py,sha256=-KlyZ-2jMQTUy0QVZCH_NuubENU-UrPXVhat3ju54ew,13114
6
8
  agent/research.py,sha256=HvqGHENQ0v1lJadGYNuf3eb6fZoR6qzzIPzqcsnhFSE,6429
7
9
  agent/tasks.py,sha256=PaQzRcnzp5HPWVlQKG3KLwdNBNqHTsqCuoGmRwRh8dA,9041
8
- bizy_ai-1.0.0.dist-info/licenses/LICENSE,sha256=__BSNgmbeWQ1IA57XKyGhQajUNcF-pZjvBAY268fCWM,1069
10
+ agent/weekly_review.py,sha256=ljwy0Aq6yFE_gs8TQjJKCO9Ob59fXsu8L_gDPiRQdmc,2298
11
+ bizy_ai-1.0.1.dist-info/licenses/LICENSE,sha256=__BSNgmbeWQ1IA57XKyGhQajUNcF-pZjvBAY268fCWM,1069
9
12
  scripts/agent_cli.py,sha256=sG-iRmFZCzm5SkqDtVV1KzZ293SEtvFpY8A1_b69dJU,6971
10
- scripts/evening_review.py,sha256=Y4d-t62zfaufM8mnSvkhBBZ0wMw1R8jtj4cN8r30t4E,4929
11
13
  scripts/init_db.py,sha256=lF1rJAuaeOX19dYQKURzePYWmjkjLPH_4L0D2OiRgQA,3376
12
- scripts/morning_brief.py,sha256=zcu4nUOnIQtoZTiK1XlEjuudiUAABrps3PvAwt2Avmk,4732
13
- scripts/weekly_review.py,sha256=ljwy0Aq6yFE_gs8TQjJKCO9Ob59fXsu8L_gDPiRQdmc,2298
14
- bizy_ai-1.0.0.dist-info/METADATA,sha256=DXC7mKFwGoVbqnTZr9DNztsdcGc9T3_KZH9O2kSIbpg,12184
15
- bizy_ai-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
- bizy_ai-1.0.0.dist-info/entry_points.txt,sha256=yDZc2xFUlCOPuHtAaNissB16AZFzOnOL8xeStkDujAg,39
17
- bizy_ai-1.0.0.dist-info/top_level.txt,sha256=k5ce4bNe_tK9tse1lxY4b8nPSipbtgoA28GHmM2ojwk,14
18
- bizy_ai-1.0.0.dist-info/RECORD,,
14
+ bizy_ai-1.0.1.dist-info/METADATA,sha256=YLRhUVVs_Ve3a5wXC6aIt3etvyJaWW2-NZKY8HLKtoo,12480
15
+ bizy_ai-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ bizy_ai-1.0.1.dist-info/entry_points.txt,sha256=yDZc2xFUlCOPuHtAaNissB16AZFzOnOL8xeStkDujAg,39
17
+ bizy_ai-1.0.1.dist-info/top_level.txt,sha256=k5ce4bNe_tK9tse1lxY4b8nPSipbtgoA28GHmM2ojwk,14
18
+ bizy_ai-1.0.1.dist-info/RECORD,,
File without changes
File without changes
File without changes