Install
$ agentstack add skill-akin-lvyifang-codex-memory-lite-codex-memory-task-init ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Codex Memory Task Init
Pre-Write Checks
Before creating the task directory, first define an absolute path variable: PROJECT_ROOT.
PROJECT_ROOTmust be the project root for the current session- Do not treat
~,/,~/.config/opencode,~/.codex, a skills directory, or a config directory as the project root - If the current directory looks like a home directory or a config directory, or if the project root is still unclear, stop and confirm it first
- All task directories and files must be created under
{PROJECT_ROOT}/.codex-memory/tasks/active// - Do not treat the bare relative path
.codex-memory/tasks/...as the final target path
When To Use
Use this when any of the following is true:
- The user explicitly says "This is a long-running task. Record it."
- The user explicitly says "Create task memory for this long-running task"
- The task will continue across multiple sessions
- The task needs its own target, decisions, and reference tracking
- The task no longer fits cleanly inside
current.md
Natural Trigger Phrases
- This is a long-running task. Record it.
- Create task memory for this long-running task
Goal
Create the standard task memory skeleton under .codex-memory/tasks/active//.
Required Output
The actual target path must be:
{PROJECT_ROOT}/.codex-memory/tasks/active//
The structure below is shown only as the project-relative layout:
Create:
.codex-memory/tasks/active//
├── brief.md
├── decisions.md
└── refs.md
Also update:
.codex-memory/tasks/index.md
Rules
- Confirm
PROJECT_ROOTfirst; all actual write paths must use absolute{PROJECT_ROOT}/.codex-memory/...paths. - `` should be short, stable, and readable, without a date.
brief.md,decisions.md, andrefs.mdmust always be created together.- All files must be generated from this skill's built-in templates.
- If the task directory already exists, do not rebuild it; only fill gaps and validate.
- When updating
tasks/index.md, add the task entry and a one-line summary. - Run a structure validation after writing; if validation fails, stop and report it.
Report Back
- the
PROJECT_ROOTused this time - the task slug
- created files
- backfilled files
tasks/index.mdupdate result- validation result
Constraints
- Do not create any
.codex-memory/tasks/directories or files beforePROJECT_ROOTis confirmed - If the target path is not
{PROJECT_ROOT}/.codex-memory/tasks/active//, stop immediately and do not continue
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AKin-lvyifang
- Source: AKin-lvyifang/codex-memory-lite
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.