Add goals, reading list, and people CRM - goals.py: Goal tracking with milestones and progress - reading.py: Reading list tracker (articles, books, papers) - people.py: Personal CRM for keeping notes on people - 21 tools total now
This commit is contained in:
42
data/goals.json
Normal file
42
data/goals.json
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"goals": [
|
||||
{
|
||||
"id": 1,
|
||||
"title": "Build out the sandbox into a daily driver",
|
||||
"description": "",
|
||||
"deadline": null,
|
||||
"created": "2026-01-30T23:44:53.121855",
|
||||
"status": "active",
|
||||
"milestones": [
|
||||
{
|
||||
"id": 1,
|
||||
"title": "Core tools built",
|
||||
"done": true,
|
||||
"created": "2026-01-30T23:44:53.147088",
|
||||
"completed": "2026-01-30T23:44:53.248604"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"title": "Projects created",
|
||||
"done": true,
|
||||
"created": "2026-01-30T23:44:53.172153",
|
||||
"completed": "2026-01-30T23:44:53.273691"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "Git/Gitea integration",
|
||||
"done": true,
|
||||
"created": "2026-01-30T23:44:53.197877",
|
||||
"completed": "2026-01-30T23:44:53.299278"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "Documentation complete",
|
||||
"done": false,
|
||||
"created": "2026-01-30T23:44:53.223477"
|
||||
}
|
||||
],
|
||||
"progress": 75
|
||||
}
|
||||
]
|
||||
}
|
||||
15
data/people.json
Normal file
15
data/people.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"d_j": {
|
||||
"name": "D J",
|
||||
"context": "My human, built this workspace together",
|
||||
"added": "2026-01-30T23:45:35.014343",
|
||||
"notes": [
|
||||
{
|
||||
"text": "Late night building session, very productive",
|
||||
"date": "2026-01-30T23:46:25.644083"
|
||||
}
|
||||
],
|
||||
"tags": [],
|
||||
"last_contact": "2026-01-30T23:46:25.644093"
|
||||
}
|
||||
}
|
||||
22
data/reading.json
Normal file
22
data/reading.json
Normal file
@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"title": "The Art of Doing Science and Engineering",
|
||||
"url": null,
|
||||
"type": "book",
|
||||
"tags": [],
|
||||
"added": "2026-01-30T23:45:14.470706",
|
||||
"status": "unread",
|
||||
"notes": null
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"title": "Attention Is All You Need",
|
||||
"url": null,
|
||||
"type": "paper",
|
||||
"tags": [],
|
||||
"added": "2026-01-30T23:45:14.495258",
|
||||
"status": "unread",
|
||||
"notes": null
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user