bizy-ai 1.0.0__tar.gz → 1.0.1__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.
Files changed (27) hide show
  1. {bizy_ai-1.0.0/bizy_ai.egg-info → bizy_ai-1.0.1}/PKG-INFO +6 -2
  2. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/README.md +5 -1
  3. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/cli.py +19 -0
  4. {bizy_ai-1.0.0 → bizy_ai-1.0.1/bizy_ai.egg-info}/PKG-INFO +6 -2
  5. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/SOURCES.txt +4 -4
  6. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/pyproject.toml +1 -1
  7. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/setup.py +1 -1
  8. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/.env.example +0 -0
  9. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/LICENSE +0 -0
  10. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/MANIFEST.in +0 -0
  11. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/__init__.py +0 -0
  12. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/core.py +0 -0
  13. {bizy_ai-1.0.0/scripts → bizy_ai-1.0.1/agent}/evening_review.py +0 -0
  14. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/models.py +0 -0
  15. {bizy_ai-1.0.0/scripts → bizy_ai-1.0.1/agent}/morning_brief.py +0 -0
  16. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/planner.py +0 -0
  17. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/research.py +0 -0
  18. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/tasks.py +0 -0
  19. {bizy_ai-1.0.0/scripts → bizy_ai-1.0.1/agent}/weekly_review.py +0 -0
  20. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/dependency_links.txt +0 -0
  21. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/entry_points.txt +0 -0
  22. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/requires.txt +0 -0
  23. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/top_level.txt +0 -0
  24. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/requirements.txt +0 -0
  25. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/scripts/agent_cli.py +0 -0
  26. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/scripts/init_db.py +0 -0
  27. {bizy_ai-1.0.0 → bizy_ai-1.0.1}/setup.cfg +0 -0
@@ -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,4 +1,8 @@
1
- # Business Agent - AI-Powered Daily Business Execution Assistant
1
+ # Bizy AI - AI-Powered Business Planning & Execution Agent
2
+
3
+ [![PyPI version](https://badge.fury.io/py/bizy-ai.svg)](https://badge.fury.io/py/bizy-ai)
4
+ [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
6
 
3
7
  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.
4
8
 
@@ -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
 
@@ -8,10 +8,13 @@ setup.py
8
8
  agent/__init__.py
9
9
  agent/cli.py
10
10
  agent/core.py
11
+ agent/evening_review.py
11
12
  agent/models.py
13
+ agent/morning_brief.py
12
14
  agent/planner.py
13
15
  agent/research.py
14
16
  agent/tasks.py
17
+ agent/weekly_review.py
15
18
  bizy_ai.egg-info/PKG-INFO
16
19
  bizy_ai.egg-info/SOURCES.txt
17
20
  bizy_ai.egg-info/dependency_links.txt
@@ -19,7 +22,4 @@ bizy_ai.egg-info/entry_points.txt
19
22
  bizy_ai.egg-info/requires.txt
20
23
  bizy_ai.egg-info/top_level.txt
21
24
  scripts/agent_cli.py
22
- scripts/evening_review.py
23
- scripts/init_db.py
24
- scripts/morning_brief.py
25
- scripts/weekly_review.py
25
+ scripts/init_db.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bizy-ai"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "AI-powered business planning and execution agent"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
5
5
 
6
6
  setup(
7
7
  name='bizy-ai',
8
- version='1.0.0',
8
+ version='1.0.1',
9
9
  description='AI-powered business planning and execution agent',
10
10
  author='Reid Chatham',
11
11
  packages=find_packages(),
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes