Sync: add productivity workflow notes

This commit is contained in:
2026-04-27 15:29:47 +08:00
parent 83c6e24e7c
commit 4422c0eac8
39 changed files with 1396 additions and 757 deletions

View File

@@ -0,0 +1,28 @@
---
title: "Google Sheets API"
type: entity
tags: []
sources: []
last_updated: 2026-04-27
---
# Google Sheets API
## Aliases
- Google Sheets
- Google Spreadsheets API
## Overview
Google Sheets API 允许程序化地读写 Google Sheets 表格。本 Wiki 中作为可选的数据可视化层,用于自动记录和展示习惯追踪数据。
## Role in This Wiki
- [[Habit Tracker & Accountability Coach]]:每日习惯数据自动写入表格,生成可视化仪表盘(可选集成)
## Key Capabilities
- 读取和写入电子表格单元格
- 批量更新数据
- 格式化表格样式
- 与 Google Drive 无缝集成
## External Links
- [Google Sheets API](https://developers.google.com/sheets/api)

View File

@@ -1,16 +1,20 @@
---
title: "Prismer AI"
type: entity
tags: []
sources: [arxiv-paper-reader]
last_updated: 2026-04-17
---
## Entity Overview
**Prismer AI** 是一个开源 AI Agent 技能库维护组织,通过 GitHub 仓库 [Prismer-AI/Prismer](https://github.com/Prismer-AI/Prismer) 提供多种即装即用的 Agent skill包括 `arxiv-reader` 等。
## Aliases
- Prismer
## Role in Wiki
- `arxiv-reader` skill 的维护方,提供 3 个工具:`arxiv_fetch``arxiv_sections``arxiv_abstract`
---
title: "Prismer AI"
type: entity
tags: []
sources: [arxiv-paper-reader, latex-paper-writing]
last_updated: 2026-04-22
---
## Entity Overview
**Prismer AI** 是一个开源 AI Agent 技能库维护组织,通过 GitHub 仓库 [Prismer-AI/Prismer](https://github.com/Prismer-AI/Prismer) 提供多种即装即用的 Agent skill包括 `arxiv-reader` 等。
## Aliases
- Prismer
## Role in Wiki
- `arxiv-reader` skill 的维护方,提供 3 个工具:`arxiv_fetch``arxiv_sections``arxiv_abstract`
- `latex-compiler` skill 的维护方,提供 4 个工具:`latex_compile``latex_preview``latex_templates``latex_get_template`,使 Agent 能够在无本地 TeX 环境的情况下完成 LaTeX 论文写作
## LaTeX Paper Writing 连接
- [[LaTeX Paper Writing]] ← uses runtime from ← [[Prismer-AI]]

22
wiki/entities/Prismer.md Normal file
View File

@@ -0,0 +1,22 @@
---
title: "Prismer"
type: entity
tags: []
sources: [latex-paper-writing]
last_updated: 2026-04-22
---
## Aliases
- Prismer-AI
- https://github.com/Prismer-AI/Prismer
## Definition
Prismer 是一个开源的 AI Agent 工作流框架,通过 Docker 容器提供预配置的开发环境,使 Agent 能够执行需要完整系统工具(如 LaTeX 编译、代码执行等)的任务,而无需在本地安装任何依赖。
## Role in Sources
- 提供 Prismer Workspace 容器(内置完整 TeX Live + LaTeX 服务器,运行在端口 8080
- 内置 latex-compiler skill为 Agent 提供 LaTeX 写作能力
- 通过 Docker Compose 一键部署:`docker compose -f docker/docker-compose.dev.yml up`
## Connections
- [[LaTeX Paper Writing]] ← uses runtime from ← [[Prismer]]

View File

@@ -2,30 +2,38 @@
title: "Todoist"
type: entity
tags: []
sources: [multi-channel-assistant]
last_updated: 2026-04-27
last_updated: 2026-05-02
---
## Aliases
- Todoist
- Todoist 应用
- Todoist 任务管理
## Overview
Todoist 是一个流行的 SaaS 任务管理工具,提供 REST API v2支持任务Tasks、评论Comments、项目Projects、分区Sections等对象的 CRUD 操作。
## Definition
Todoist 是一款跨平台Web、iOS、Android、桌面的个人待办事项管理应用以简洁的界面和自然语言输入著称是任务管理领域的标杆产品之一。
## Role in Agent Workflows
Todoist 常被用作 AI Agent 的外部状态同步层:
- 创建/更新任务状态In Progress / Waiting / Done
- 外化 Agent 的内部 Plan 到任务描述
- 追加子步骤日志为评论
- 接收 Cron Job 的逾期提醒通知
## Key Characteristics
- 自然语言输入:支持用自然语言快速创建任务(如"明天下午 3 点完成任务"
- 多平台同步:支持所有主流平台,数据实时同步
- 项目层级:支持项目和子项目组织任务
- 标签与过滤:支持标签和自定义过滤器进行任务筛选
- 集成生态:支持与日历、邮件、云盘等多种工具集成
- 协作功能支持任务分配和评论Premium 功能)
## API Capabilities
- **Tasks API**:创建、更新、移动、关闭任务
- **Comments API**:在任务下追加评论
- **Sections API**:创建分区组织任务(如 🟡 In Progress
- **Labels API**:为任务添加标签
- **Projects API**:组织多个项目
## Role in Task Management
Todoist 代表了"独立任务管理工具"的理念——任务应与文档分离,各司其职。其竞品包括 Things、TickTick、Notion Tasks 等。与 Obsidian Tasks 插件不同Todoist 采用独立界面而非嵌入式任务管理。
## Integration Pattern
典型集成方式(参考 [[TodoistTaskManager]]
```bash
./todoist_api.sh <endpoint> <method> [data_json]
./sync_task.sh <content> <status> [task_id] [description] [labels]
./add_comment.sh <task_id> <comment_text>
```
## Connections
- [[ObsidianTasksPlugin]] ← replaces ← [[Todoist]](作者用 Tasks 插件替代了 Todoist
- [[Obsidian]] ← alternative_task_tool ← [[Todoist]]Obsidian Tasks 插件是 Todoist 的替代方案)
- [[TaskAutomation]] ← uses ← [[Todoist]]Agent 自动化任务添加场景)
## Related Entities
- [[TodoistRestApi]]:官方 REST API
- [[OpenClawWorkspace]]Agent 执行环境
## Related Concepts
- [[TaskVisibility]]
- [[ExternalReasoning]]

View File

@@ -0,0 +1,40 @@
---
title: "TodoistRestApi"
type: entity
tags: []
last_updated: 2026-05-02
---
## Overview
Todoist 官方 REST API v2是 Todoist 作为 Agent 外部状态同步层的技术基础。
## Base URL
```
https://api.todoist.com/rest/v2/
```
## Key Endpoints
| Endpoint | Method | Description |
|----------|--------|-------------|
| `/tasks` | POST | 创建新任务 |
| `/tasks/{task_id}` | POST | 更新任务 |
| `/tasks/{task_id}/close` | POST | 完成任务 |
| `/tasks/{task_id}/reopen` | POST | 重开任务 |
| `/comments` | POST | 添加评论 |
| `/sections` | GET/POST | 获取/创建分区 |
## Authentication
使用 Bearer Token 认证:
```bash
curl -s -X POST "https://api.todoist.com/rest/v2/tasks" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content": "Task content", "project_id": "PROJECT_ID"}'
```
## Integration Context
参见 [[TodoistTaskManager]] 中的 `todoist_api.sh` 封装脚本,以及 [[Todoist]] 实体的角色说明。
## Related Entities
- [[Todoist]]
- [[OpenClawWorkspace]]

28
wiki/entities/Twilio.md Normal file
View File

@@ -0,0 +1,28 @@
---
title: "Twilio"
type: entity
tags: []
sources: []
last_updated: 2026-04-27
---
# Twilio
## Aliases
- Twilio Inc.
- Twilio SMS API
## Overview
Twilio 是一个云通信平台,提供 SMS、Voice、WhatsApp 等消息渠道的 API。本 Wiki 中主要引用其 SMS API作为 Telegram Bot API 的替代方案,用于 AI Agent 的每日习惯签到提醒。
## Role in This Wiki
- [[Habit Tracker & Accountability Coach]]:作为 SMS 渠道发送每日习惯签到提醒(无 Telegram 用户适用)
- [[Phone-Based Personal Assistant]]:核心消息推送渠道
## Key Capabilities
- RESTful SMS API支持全球多国家号码
- 可编程消息发送时间和内容
- 支持双向消息收发
## External Links
- [Twilio SMS API Docs](https://www.twilio.com/docs/sms)

View File

@@ -0,0 +1,21 @@
---
title: "mnemox.ai"
type: entity
tags: [company, ai-tools, mcp]
sources: [pre-build-idea-validator]
last_updated: 2026-04-27
---
## Overview
mnemox.ai 是一个 AI 工具开发商,专注于为 AI Agent 工作流提供实时市场情报服务。
## Key Products
- **[[idea-reality-mcp]]**MCP server通过扫描 GitHub/Hacker News/npm/PyPI/Product Hunt 五个平台,为 AI Agent 提供项目想法的竞争分析评分reality_signal
- **Web Demo**:提供在线预览版 https://mnemox.ai/check无需安装即可体验 idea-reality-mcp 的工作流
## Connections
- [[OpenClaw]] ← integrates_with ← [[idea-reality-mcp]]
- [[pre-build-idea-validator]] ← powered_by ← [[idea-reality-mcp]]
## Aliases
- mnemox