Add Task Manager scripts (Moltbot port)

This commit is contained in:
Jarvis
2026-01-31 07:28:44 +00:00
parent 7af388438f
commit 4c391d4e81
6 changed files with 236 additions and 0 deletions

16
scripts/list_projects.py Normal file
View File

@@ -0,0 +1,16 @@
import clawd_notion as notion
import json
def main():
db_id = notion.find_db("Projects [UT]")
if not db_id:
print("Projects DB not found.")
return
projects = notion.query_db(db_id)
print("Verfügbare Projekte:")
for i, p in enumerate(projects):
print(f"{i+1}. {notion.get_title(p)} (ID: {p['id']})")
if __name__ == "__main__":
main()