원클릭으로
원클릭으로
Add and review macOS app localizations in Planet or another Apple-platform project. Use when Codex needs to add a new .lproj localization, register it in an Xcode project, translate Localizable.strings or InfoPlist.strings, review newly added translations for awkward wording, or align UI text with Apple's shipped macOS terminology by inspecting local Apple .lproj resources on the same machine.
Save the current Codex session summary as a Planet article for later review. Use when the user asks to save, archive, or sync the current Codex session into Planet, updating the same article for the same Codex thread.
| name | save-session |
| description | Save the current Claude Code session as a Planet article for later review |
| allowed-tools | Bash, Read |
Save the current session to Planet. Follow these steps exactly:
Create a short, descriptive title (under 80 chars) in this format:
YYYY-MM-DD Session: <brief description of what was done>
Use today's date. The description should capture the main theme (e.g., "Build release notes Flask app", "Fix search performance", "Add Planet API sync").
Write an HTML summary of this session. Structure it as:
<h2>What was done</h2>
<ul>
<li>Key task or change 1</li>
<li>Key task or change 2</li>
...
</ul>
<h2>Key decisions</h2>
<ul>
<li>Decision 1 and why</li>
...
</ul>
<h2>Files changed</h2>
<ul>
<li><code>path/to/file1</code> — what changed</li>
<li><code>path/to/file2</code> — what changed</li>
...
</ul>
Be concise. Focus on what matters for future review. Omit sections if they don't apply (e.g., skip "Key decisions" if there were none worth noting).
Run the save script. The title, summary, and session ID must be passed as arguments. The current Claude Code session ID is: ${CLAUDE_SESSION_ID}. Pass this value as a literal string (not as a shell variable). Use a heredoc for the summary to handle HTML safely:
TITLE="<the title>"
SESSION_ID="<the Claude Code session ID shown above>"
SUMMARY=$(cat <<'HTMLEOF'
<the summary HTML>
HTMLEOF
)
python3 tools/claude-code-skill/save_session.py "$TITLE" "$SUMMARY" "$SESSION_ID"
The script reads tools/claude-code-skill/config.json to find the Planet server and planet ID for the current project.
The script embeds the session ID in the article content and uses it to find existing articles from the same session. This means multiple /save-session calls in the same session update the same article, even if the title changes.
Tell the user the article was created or updated, with the title. The article is viewable in the Planet app.