一键导入
notes
Manage user notes (create, read, update, delete, search).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage user notes (create, read, update, delete, search).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage user schedules (add, update, delete, search).
Manage personal finances (income, expense, analytics).
Convert values between various units (excluding currency).
Scrape data from a specified URL using the scraping tool.
Performs a search or extracts content using the Tavily API.
Get current time information in a specific timezone using Python.
| name | Notes |
| description | Manage user notes (create, read, update, delete, search). |
This skill allows you to manage notes for a user.
Run the notes.py script using the bash tool.
Command:
.venv/bin/python scripts/notes.py '<json_arguments>'
Arguments: The script implementation accepts a single JSON string argument containing the parameters.
Parameters (JSON structure):
action: (Required) The action to perform. Options: GET, GET_DETAIL, POST, PUT, DELETE, SEARCH, GET_BY_DATE.user_id: (Required) The ID of the user owning the note.title: (Required for POST, PUT, DELETE, GET_DETAIL) The title of the note.content: (Required for POST, PUT) The content of the note.search: (Required for SEARCH) The keyword to search for in titles and content.start_date: (Required for GET_BY_DATE) Start date (YYYY-MM-DD or RFC3339).end_date: (Required for GET_BY_DATE) End date (YYYY-MM-DD or RFC3339).Examples:
Create a Note (POST):
# JSON Argument
{"action": "POST", "user_id": "user123", "title": "Meeting Notes", "content": "Discuss project timeline..."}
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/notes/scripts/notes.py '{"action": "POST", "user_id": "user123", "title": "Meeting Notes", "content": "Discuss project timeline..."}'
Get All Notes (GET):
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/notes/scripts/notes.py '{"action": "GET", "user_id": "user123"}'
Search Notes (SEARCH):
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/notes/scripts/notes.py '{"action": "SEARCH", "user_id": "user123", "search": "timeline"}'