一键导入
annotations
Edit IDA databases. Use when asked to add comments, rename symbols, apply types, create bookmarks, or clean up decompiled code for review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Edit IDA databases. Use when asked to add comments, rename symbols, apply types, create bookmarks, or clean up decompiled code for review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Triage and audit IDA binaries. Use when asked to analyze a binary, find suspicious behavior, detect crypto/network activity, review decompiled code against source, or run multi-table queries.
Connect to IDA databases and bootstrap sessions. Use when starting analysis, routing to other skills, or setting up CLI/HTTP/MCP connections.
Query IDA strings, bytes, and binary data. Use when asked to search strings, find byte patterns, rebuild string tables, or analyze binary content.
IDA debugger operations. Use when asked to set breakpoints, patch bytes, add conditions, or manage a patch inventory.
Decompile and analyze IDA functions. Use when asked for pseudocode, ctree AST analysis, local variables, labels, or decompiler-driven cleanup.
Query IDA disassembly. Use when asked about functions, segments, instructions, blocks, operands, control flow, or raw code structure.
| name | annotations |
| description | Edit IDA databases. Use when asked to add comments, rename symbols, apply types, create bookmarks, or clean up decompiled code for review. |
| allowed-tools | ["Bash","Read","Glob","Grep"] |
This skill is your guide for editing IDA databases through idasql. Use it whenever you need to annotate, rename, retype, comment, or otherwise modify decompiled output, disassembly, or type information.
Use this skill when user asks to:
Route to:
decompiler for analysis before editingtypes when declarations or struct models need constructionre-source for recursive narrative/source recovery passes-- 1) Confirm target row/function before editing
SELECT * FROM funcs WHERE addr = 0x401000;
-- 2) Inspect current comment state
SELECT addr, line, comment
FROM pseudocode
WHERE func_addr = 0x401000
LIMIT 30;
-- 3) Inspect existing disassembly comments
SELECT * FROM comments WHERE addr BETWEEN 0x401000 AND 0x401100;
Interpretation guidance:
func_addr + addr, idx, slot) over fuzzy name matches.annotations -> decompiler when semantic meaning is unclear.annotations -> types when edits imply missing declarations.annotations -> re-source when function-level notes must become recursive campaign notes.Treat annotate this function as a full-function workflow, not a single comment operation.
Default behavior:
funcs.rpt_commentdecompile(addr, 1) and verify the resultUse narrower intents only when the user asks narrowly:
add a comment -> comment onlyfunc-summary / function summary -> summary onlyannotate this function -> full cleanup plus summaryWhy the summary is mandatory:
Use object-table folder_path columns to organize work as you annotate. Prefer funcs.folder_path for function-level work, names.folder_path for globals/labels, and bookmarks.folder_path for review breadcrumbs. dirtree_entries is the raw browser and dirtree_folders manages empty folders across all standard IDA dirtrees.
Common folders:
idasql/review/needs-typesidasql/review/annotatedidasql/review/verifiedidasql/triage/networkidasql/triage/crypto-- Create a review bucket and move selected functions into it
INSERT INTO dirtree_folders(tree, path)
VALUES ('funcs', 'idasql/review/needs-types');
UPDATE funcs
SET folder_path = 'idasql/review/needs-types'
WHERE addr = 0x401000;
-- Mark a function as annotated while adding the required repeatable summary
UPDATE funcs
SET folder_path = 'idasql/review/annotated',
rpt_comment = 'Parses command records, validates the opcode, and dispatches to command handlers.'
WHERE addr = 0x401000;
UPDATE names
SET folder_path = 'idasql/names/globals'
WHERE name LIKE 'g_%';
UPDATE bookmarks
SET folder_path = 'idasql/bookmarks/review'
WHERE description LIKE '%review%';
-- Review progress
SELECT folder_path, COUNT(*) AS functions
FROM funcs
WHERE folder_path LIKE 'idasql/%'
GROUP BY folder_path
ORDER BY folder_path;
Use UPDATE ... SET folder_path = NULL WHERE ... to move an object back to root. DELETE FROM dirtree_folders removes only empty folders. Folder writes use relative / paths and reject ./.., duplicate separators, backslashes, and renames to an already-existing destination.
True IDA function comments live on funcs, not on pseudocode and not on the address-level comments table.
Use:
funcs.comment for the regular function commentfuncs.rpt_comment for the repeatable function commentDefault function-summary behavior:
add function comment as UPDATE funcs SET rpt_comment = ...funcs.comment only when the user explicitly asks for a non-repeatable function commentpseudocode block comment only when the user explicitly asks for a decompiler note/summary rather than a true function commentCanonical SQL pattern:
SELECT addr, name, comment, rpt_comment
FROM funcs
WHERE addr = 0x401000;
UPDATE funcs
SET rpt_comment = 'One-paragraph summary of what the function does, inputs/outputs, and key behavior.'
WHERE addr = 0x401000;
The pseudocode table is the editing surface for decompiler comments. Use decompile(addr) to view; use the table to edit. For full table schema, see decompiler skill.
Important separation:
pseudocode.comment edits Hex-Rays decompiler comments only.pseudocode writes never call set_func_cmt().funcs.comment / funcs.rpt_comment for true function comments.Writable columns: comment, comment_placement. Placements: semi (after ;), block1 (own line above), block2, curly1, curly2, brace1, brace2, colon, case, else, do, asm, try. An unrecognized placement string is silently coerced to semi.
Anchor guidance:
addr maps to multiple pseudocode rows ({, statement, }), resolve a unique non-brace anchor first.line_num only to inspect candidate rows. Comment writes persist by addr + comment_placement; shared-addr rows need extra care, so do not assume every displayed shared-addr row is independently writable.Inspect anchors before writing:
SELECT line_num, addr, line, comment
FROM pseudocode
WHERE func_addr = 0x401000
ORDER BY line_num;
-- The example UPDATEs below assume 0x401020 is an already resolved writable
-- non-brace anchor from the inspection query above; do not substitute func_addr.
-- Edit: Add inline comment to decompiled code
UPDATE pseudocode SET comment_placement = 'semi',
comment = 'buffer overflow here'
WHERE func_addr = 0x401000 AND addr = 0x401020;
-- Edit: Add block comment (own line above statement)
UPDATE pseudocode SET comment_placement = 'block1', comment = 'vulnerable call'
WHERE func_addr = 0x401000 AND addr = 0x401020;
-- Edit: Delete comments at a resolved unique anchor
-- Warning: comment = NULL currently clears all placements at that addr.
UPDATE pseudocode SET comment = NULL
WHERE func_addr = 0x401000 AND addr = 0x401020;
-- Read edited pseudocode with comments
SELECT addr, line, comment FROM pseudocode WHERE func_addr = 0x401000;
If the database contains stale decompiler comments that no longer attach to current pseudocode, use the orphan comment surfaces instead of trying to clear them through pseudocode.
Read-first pattern:
SELECT func_addr, func_name, orphan_count
FROM pseudocode_v_orphan_comment_groups
ORDER BY orphan_count DESC
LIMIT 20;
SELECT addr, comment_placement, orphan_comment
FROM pseudocode_orphan_comments
WHERE func_addr = 0x401000
ORDER BY addr, comment_placement;
Delete-only mutation pattern:
UPDATE pseudocode_orphan_comments
SET orphan_comment = NULL
WHERE func_addr = 0x401000
AND addr = 0x401020
AND comment_placement = 'semi';
Notes:
pseudocode_orphan_comments is delete-only.WHERE func_addr = ... on both surfaces for the fast path.Use function summary and func-summary as equivalent intent.
Trigger contract:
function summary or func-summary, add or update exactly one repeatable function comment on funcs.rpt_comment.add function comment (singular) without line-specific targets, treat it as a repeatable function comment update.pseudocode.comment with a resolved writable anchor instead.Default behavior:
funcs.rpt_comment.funcs.comment only when the user explicitly asks for a non-repeatable function comment.Length guidance:
Canonical SQL pattern:
SELECT addr, name, comment, rpt_comment
FROM funcs
WHERE addr = 0x401000;
UPDATE funcs
SET rpt_comment = 'One-paragraph summary of what the function does, inputs/outputs, and key behavior.'
WHERE addr = 0x401000;
Prompt examples:
function summary 0x401000func-summary DriverEntryfunc-summary this functionRead disassembly-level comments from the comments table:
SELECT COALESCE(NULLIF(comment, ''), NULLIF(rpt_comment, '')) AS comment
FROM comments
WHERE addr = 0x401000
LIMIT 1;
Upsert semantics: for the names and comments tables, INSERT at an address that already has a value replaces the existing entry (IDA allows only one name and one comment-slot per EA). UPDATE is equivalent for the in-place case. For names, IDA's SN_CHECK flag also auto-disambiguates global name conflicts (e.g. foo may become foo_0 if the name is already used at a different EA) — read back the row after writing to see what was actually stored.
The comments table supports INSERT, UPDATE, and DELETE:
| Table | INSERT | UPDATE columns | DELETE |
|---|---|---|---|
comments | Yes | comment, rpt_comment | Yes |
INSERT INTO comments(addr, comment) VALUES (0x401000, 'regular comment');
INSERT INTO comments(addr, rpt_comment) VALUES (0x401000, 'repeatable comment');
UPDATE comments SET comment = 'updated comment' WHERE addr = 0x401000;
DELETE FROM comments WHERE addr = 0x401000;
Notes:
comments edits address comments via set_cmt().funcs.comment / funcs.rpt_comment edit true function comments via set_func_cmt().The bookmarks table supports full CRUD for editing marked positions and folder organization:
| Column | Type | Description |
|---|---|---|
slot | INT | Bookmark slot index |
addr | INT | Bookmarked address |
description | TEXT | Bookmark description |
inode | INT | Read-only dirtree inode |
folder_path | TEXT | Writable bookmark folder; NULL means root |
full_path | TEXT | Read-only full dirtree path |
-- List all bookmarks
SELECT printf('0x%X', addr) as addr, description, folder_path FROM bookmarks;
-- Edit: Add bookmark
INSERT INTO bookmarks (addr, description) VALUES (0x401000, 'interesting branch');
-- Edit: Update bookmark description
UPDATE bookmarks SET description = 'confirmed branch' WHERE slot = 0;
-- Edit: Move bookmark into a review folder
UPDATE bookmarks SET folder_path = 'idasql/bookmarks/confirmed' WHERE slot = 0;
-- Edit: Delete bookmark
DELETE FROM bookmarks WHERE slot = 0;
For canonical schema and owner mapping, see ../connect/references/schema-catalog.md (bookmarks).
The ctree_lvars table is the editing surface for decompiler local variables. Writable columns: name, type, comment. For full table schema, see decompiler skill.
Local-variable edit guidance:
idx, then update by func_addr + idx.UPDATE ctree_lvars SET name = ..., type = ..., or comment = ... for local edits.func_addr + name, choose one idx, then update by idx.-- Inspect current locals before renaming
SELECT idx, name, type, comment
FROM ctree_lvars
WHERE func_addr = 0x401000
ORDER BY idx;
-- Edit: Rename a local variable by index (canonical, deterministic)
UPDATE ctree_lvars SET name = 'buffer_size' WHERE func_addr = 0x401000 AND idx = 2;
-- Edit: Rename by current name after selecting one deterministic idx
UPDATE ctree_lvars SET name = 'buffer_size'
WHERE func_addr = 0x401000
AND idx = (
SELECT idx FROM ctree_lvars
WHERE func_addr = 0x401000 AND name = 'v2'
ORDER BY idx LIMIT 1
);
-- Edit: Set local-variable comment by index
UPDATE ctree_lvars SET comment = 'points to decrypted buffer' WHERE func_addr = 0x401000 AND idx = 2;
-- Edit: Change variable type
UPDATE ctree_lvars SET type = 'char *'
WHERE func_addr = 0x401000 AND idx = 2;
Read the current labels first, then rename the exact label you observed. Prefer label_num identity over guessing from line text.
-- Inspect labels before renaming
SELECT label_num, name, printf('0x%X', item_addr) AS item_addr
FROM ctree_labels
WHERE func_addr = 0x401000
ORDER BY label_num;
-- Rename deterministically by label number
UPDATE ctree_labels SET name = 'fail' WHERE func_addr = 0x401000 AND label_num = 12;
-- Equivalent UPDATE path
UPDATE ctree_labels
SET name = 'fail'
WHERE func_addr = 0x401000 AND label_num = 12;
For type creation, member CRUD, enum values, parse_decls(), applied_types, and name writes via names/funcs, see types skill.
Quick apply patterns used in annotation workflows:
-- Apply type to a function
UPDATE funcs SET prototype = 'void __fastcall exec_command(command_t *cmd);'
WHERE addr = 0x140001BD0;
-- Apply/replace the type at any mapped address
INSERT INTO applied_types(addr, decl)
VALUES (0x140001BD0, 'void __fastcall exec_command(command_t *cmd);');
The instructions table operand*_format_spec columns allow editing operand display:
-- Edit: Apply enum representation to operand 1
UPDATE instructions
SET operand1_format_spec = 'enum:MY_ENUM'
WHERE addr = 0x401020;
-- Edit: Apply struct-offset representation
UPDATE instructions
SET operand0_format_spec = 'stroff:MY_STRUCT,delta=0'
WHERE addr = 0x401030;
-- Edit: Nested member path uses '/' to separate type names
UPDATE instructions
SET operand0_format_spec = 'stroff:OUTER_T/INNER_T'
WHERE addr = 0x401030;
-- Edit: Clear representation back to plain
UPDATE instructions
SET operand1_format_spec = 'clear'
WHERE addr = 0x401020;
All of these work at the disassembly level — no IDAPython needed. The UPDATE is verified after apply and surfaces a SQL error if the representation didn't take.
The full operand*_format_spec vocabulary also covers number bases and other
display forms:
-- Number base / character
UPDATE instructions SET operand1_format_spec = 'hex' WHERE addr = 0x401020; -- also dec/oct/bin
UPDATE instructions SET operand1_format_spec = 'char' WHERE addr = 0x401020;
-- Offsets, sizeof, forced operand text
UPDATE instructions SET operand1_format_spec = 'offset:tbl_start' WHERE addr = 0x401020;
UPDATE instructions SET operand1_format_spec = 'sizeof:MY_STRUCT' WHERE addr = 0x401020;
UPDATE instructions SET operand1_format_spec = 'forced:5 shl 3' WHERE addr = 0x401020;
-- Sign / bitwise-not modifiers (combine with a base, or use alone)
UPDATE instructions SET operand1_format_spec = 'dec,signed' WHERE addr = 0x401020;
Other kinds: float, segment, stkvar, and the ,unsigned / ,bnot /
,nobnot modifiers. See the disassembly skill for the full table.
For union selection helpers (set_union_selection*, get_union_selection*), see decompiler skill.
Recommended: Retype the variable to an enum type — IDA's decompiler will then automatically render all constants using enum names:
-- 1. Define the enum type (skip if it already exists)
SELECT parse_decls('typedef enum { DLL_PROCESS_DETACH=0, DLL_PROCESS_ATTACH=1 } fdw_reason_t;');
-- 2. Retype the parameter/variable
UPDATE ctree_lvars SET type = 'fdw_reason_t'
WHERE func_addr = 0x180001050 AND idx = 1;
-- 3. Verify
SELECT decompile(0x180001050, 1);
For per-operand numform control (set_numform*, get_numform*), see decompiler skill.
Follow the read -> edit -> refresh -> verify cycle defined in
connectGlobal Agent Contracts.
When editing many functions or annotations, keep these costs in mind:
decompile(addr, 1) triggers a full re-decompilation (~50-200ms per function). When editing multiple items in the same function, batch all edits before the refresh:
-- Good: structural typing first, then refresh, then naming cleanup
UPDATE ctree_lvars SET type = 'MY_CTX *' WHERE func_addr = 0x401000 AND idx = 0;
SELECT decompile(0x401000, 1);
UPDATE ctree_lvars SET name = 'ctx' WHERE func_addr = 0x401000 AND idx = 0;
UPDATE ctree_lvars SET name = 'size' WHERE func_addr = 0x401000 AND idx = 1;
SELECT decompile(0x401000, 1); -- final refresh after cleanup
pseudocode comment writes (re)decompile the target function — each write decompiles the containing function to resolve the comment anchor, persists to IDA's user comments store, then invalidates that function's decompiler cache so the next decompile(addr) re-renders. You do not need to call decompile(addr, 1) yourself between comment writes, but the write is not free — it costs one decompilation of that function.ctree_lvars type changes invalidate the decompiler cache — after changing a variable type, refresh before you trust idx/name-based cleanup. The decompiler may split locals or re-render expressions.save_database() can be costly on large databases. Batch all writes and save once at the end of an annotation campaign, not after each edit.types — define and modify type dictionary entries; apply them via applied_types or funcs.prototype.decompiler — pseudocode comments (UPDATE pseudocode SET comment = ...); ctree lvar renames/retypes.disassembly — rename code labels (names), apply instruction-level operand formats.