mit einem Klick
save-session
// 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.
// 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.
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 Claude Code session as a Planet article for later review
| name | save-session |
| description | 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. |
Save the current Codex session into Planet.
Write a concise HTML summary of the current session. Prefer these sections and omit any that would be empty:
<h2>What was done</h2>
<ul>
<li>Important task or change</li>
</ul>
<h2>Key decisions</h2>
<ul>
<li>Decision and why it matters</li>
</ul>
<h2>Files changed</h2>
<ul>
<li><code>path/to/file</code> - short change summary</li>
</ul>
<h2>Verification</h2>
<ul>
<li>Builds, tests, or manual checks</li>
</ul>
<h2>Open follow-ups</h2>
<ul>
<li>Anything still worth doing later</li>
</ul>
Keep it focused on future review. Do not restate the full conversation.
Pipe the HTML into the save script:
python3 /Users/livid/.codex/skills/save-session/scripts/save_session.py <<'HTML'
<the summary HTML>
HTML
The script:
CODEX_THREAD_ID if one already existsBecause Codex's sandbox cannot reach the local Planet API, run the command with escalated permissions.
Tell the user whether the article was created or updated and include the final title.