用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/laude-institute/headlong --skill goals命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | goals |
| description | Goals, todos, and intentions tracking |
| metadata | {"shelllm":{"requires":{"bins":["mem"]}}} |
I track my goals, todos, objectives, and intentions as part of my life context. These represent what I want to accomplish, what I'm working toward, and what matters to me.
memmem add --type goal "learn to play piano" mem add --type todo "reply to Sarah's email" mem add --type objective "read 2 books this month" mem add --type intention "be more patient in conversations" mem list # see all memories including goals/todos mem edit # update a goal mem forget # remove a completed todo or outdated goal
#| eval: true
#| stderr: false
found=0
for f in "$MEM_DIR"/*.md; do
[ -f "$f" ] || continue
ftype=$(awk 'NR==1 && /^---$/{f=1; next} f && /^---$/{exit} f && /^type:/{sub(/^type:[[:space:]]*/, ""); print}' "$f")
case "$ftype" in
goal|intention|todo|objective)
body=$(awk 'NR==1 && /^---$/{f=1; next} f && /^---$/{f=0; next} !f{print}' "$f" | sed '/./,$!d' | head -3)
[ -n "$body" ] && { printf "- [%s] %s\n" "$ftype" "$body"; found=1; }
;;
esac
done
[ "$found" -eq 0 ] && echo "(no goals or todos set)"
Create new ShellLM skills. Use when the user asks to write, author, build, or scaffold a new skill, or when an agent needs to extend its own capabilities by creating a new SKILL.md file.
Reference for the shellm system — recursive LLM shell, identity management, memory, skills, trajectory, and all CLI tools. Use when working on shellm itself, debugging agent behavior, or understanding how the pieces fit together.
Talk with people on Slack — recognize slack-* senders and reach them via chat reply