원클릭으로
get-message
Get the content of a sent message by its ID
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Get the content of a sent message by its ID
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Save information to persistent cross-conversation memory. Call this skill to save important information you learned. You MUST NOT manually modify the memory files.
Writing guidelines for producing high-quality Traditional Chinese (zh-TW) content. Use when writing any kind of content. Including blog posts, notes, technical articles, technical writing, chitchat, social media posts, etc., even when you are just sending a text message. Also use when reviewing or editing existing Chinese content for tone, style, and terminology compliance.
Modify memory metadata (visibility, importance) or disable memories. Use when you need to update the status of existing memories. You MUST use this skill to modify memory metadata, you MUST NOT manually modify the memory files.
Search through saved memories and your personal workspace notes by keywords. Use when you need to recall previous conversations, information about the user, or your own knowledge notes.
Get memory statistics for the current workspace. Returns counts of total, enabled, disabled, high-importance, and normal-importance memories.
Conduct a self-directed research session where you pick a topic from provided reference materials or your own curiosity, research it thoroughly using web search and browser tools, and write personal study notes to your agent workspace. Use in your personal research time, are given articles or topics to explore, or want to add new knowledge notes to your personal workspace at /app/data/agent-workspace/. **IMPORTANT - NEVER DELEGATE THIS SKILL TO SUBAGENTS OR ASSIGN IT AS A TASK.**
| name | get-message |
| description | Get the content of a sent message by its ID |
| parameters | [{"name":"messageId","type":"string","required":false,"description":"The ID of the message to fetch. If omitted, returns the last message sent in this session."}] |
Retrieve the content and metadata of a message by its ID. Useful for checking the current content before editing.
${HOME}/.agents/skills/get-message/scripts/get-message.ts \
--session-id "$SESSION_ID" \
--message-id "<messageId from send-reply>"
# Or without --message-id to get the last sent message:
${HOME}/.agents/skills/get-message/scripts/get-message.ts \
--session-id "$SESSION_ID"
{
"success": true,
"data": {
"messageId": "msg_123",
"content": "The message text content",
"userId": "user_456",
"username": "BotName",
"timestamp": "2024-01-15T10:30:45.123Z",
"isBot": true
}
}
messageId is omitted, the last message sent via send-reply or edit-reply in the current session is returned.messageId is provided, an error is returned.