Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Shiyinq/myaaw --skill notes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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"}'