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.
- {bizy_ai-1.0.0/bizy_ai.egg-info → bizy_ai-1.0.1}/PKG-INFO +6 -2
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/README.md +5 -1
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/cli.py +19 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1/bizy_ai.egg-info}/PKG-INFO +6 -2
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/SOURCES.txt +4 -4
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/pyproject.toml +1 -1
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/setup.py +1 -1
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/.env.example +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/LICENSE +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/MANIFEST.in +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/__init__.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/core.py +0 -0
- {bizy_ai-1.0.0/scripts → bizy_ai-1.0.1/agent}/evening_review.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/models.py +0 -0
- {bizy_ai-1.0.0/scripts → bizy_ai-1.0.1/agent}/morning_brief.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/planner.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/research.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/agent/tasks.py +0 -0
- {bizy_ai-1.0.0/scripts → bizy_ai-1.0.1/agent}/weekly_review.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/dependency_links.txt +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/entry_points.txt +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/requires.txt +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/bizy_ai.egg-info/top_level.txt +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/requirements.txt +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/scripts/agent_cli.py +0 -0
- {bizy_ai-1.0.0 → bizy_ai-1.0.1}/scripts/init_db.py +0 -0
- {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.
|
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
|
-
#
|
43
|
+
# Bizy AI - AI-Powered Business Planning & Execution Agent
|
44
|
+
|
45
|
+
[](https://badge.fury.io/py/bizy-ai)
|
46
|
+
[](https://www.python.org/downloads/)
|
47
|
+
[](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
|
-
#
|
1
|
+
# Bizy AI - AI-Powered Business Planning & Execution Agent
|
2
|
+
|
3
|
+
[](https://badge.fury.io/py/bizy-ai)
|
4
|
+
[](https://www.python.org/downloads/)
|
5
|
+
[](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.
|
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
|
-
#
|
43
|
+
# Bizy AI - AI-Powered Business Planning & Execution Agent
|
44
|
+
|
45
|
+
[](https://badge.fury.io/py/bizy-ai)
|
46
|
+
[](https://www.python.org/downloads/)
|
47
|
+
[](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/
|
23
|
-
scripts/init_db.py
|
24
|
-
scripts/morning_brief.py
|
25
|
-
scripts/weekly_review.py
|
25
|
+
scripts/init_db.py
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|