在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用coredump
星标2
分支0
更新时间2026年1月3日 20:00
Core Dump Analysis skill for the ikigai project
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Core Dump Analysis skill for the ikigai project
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automated quality check loops with escalation and fix sub-agents
JSON-based end-to-end test format, runner, and mock provider
Jujutsu (jj) skill for the ikigai project
How to write effective Ralph goals for Ikigai-driven workflows
Create and manage Ralph goals from Ikigai using the real ralph-pipeline scripts
Create repositories using the real ralph-pipeline repo-create script
| name | coredump |
| description | Core Dump Analysis skill for the ikigai project |
Post-mortem debugging using core dumps for crashes that occur before gdbserver can catch them.
# Enable for current session
ulimit -c unlimited
# Verify
ulimit -c
# Run until crash
./ikigai
# Produces: core or core.<pid>
# Analyze
gdb ./ikigai core
bt # Backtrace - where it crashed
bt full # Backtrace with local variables
frame N # Select stack frame
info locals # Variables in current frame
print var # Inspect variable
list # Source at crash point
info registers # CPU state at crash
x/20x $sp # Examine stack memory
# Check core pattern
cat /proc/sys/kernel/core_pattern
# Common locations
ls -la core*
ls -la /var/crash/
ulimit -c unlimitedgdb ./ikigai corebt fullgdbserver.md for live debugging