Agent skill

ima-notes

通过 IMA OpenAPI 处理笔记任务。支持搜索笔记、读取笔记、列出笔记、新建笔记、追加笔记。用户提到笔记、备忘录、记一下、追加到某篇笔记时使用。

countbot-aigithub.com/countbot-aiGitHub ↗
claude-codeships scriptsMIT
Install
npx skills add countbot-ai/CountBot --skill ima-notes --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 8
SKILL.md size: 1 KB
Bundled scripts: yes
Path: workspace/skills/ima-notes/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 760
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# IMA Notes 入口: ```bash python skills/ima-notes/scripts/ima_notes_tool.py <command> ... ``` ## 执行规则 - 用户说“搜笔记、找笔记、看看有没有笔记”时,先 `search-notes` - 看正文用 `read-note` - 明确说新建时用 `create-note` - 明确说追加到某一篇时才用 `append-note` - 目标不明确时,不要猜;先搜索或先确认 - 默认直接返回命中的标题和摘要;只有需要结构化结果时才加 `--json` ## 常用命令 ```bash python skills/ima-notes/scripts/ima_notes_tool.py search-notes --keyword "周报" python skills/ima-notes/scripts/ima_notes_tool.py search-notes --search-field content --keyword "复盘" python skills/ima-notes/scripts/ima_notes_tool.py read-note --title "会议纪要" python skills/ima-notes/scripts/ima_notes_tool.py list-notes --limit 20 python skills/ima-notes/scripts/ima_notes_tool.py create-note --title "新笔记" --content "正文" python skills/ima-notes/scripts/ima_notes_tool.py append-note --title "会议纪要" --content "补充内容" ``` ## 写入安全 - `append-note` 会真实修改已有笔记,目标不唯一时不要直接执行 - 需要配置时查看 `scripts/config.json` 和 `config.help.md` ## 如何配置 下载最新的IMA客户端(比如Android),登陆后点击 “我” --> Claw配置 --> 复制 client_id和api_key参数,提供给CountBot后会自动调用文件编辑工具修改config.json。

What's inside
Steps it walks through
  1. 执行规则
  2. 常用命令
  3. 写入安全
  4. 如何配置
Ships with 7 files
  • config.help.md
  • references/api.md
  • scripts/config.json
  • scripts/config.json.example
  • scripts/ima_client.py
  • scripts/ima_notes_tool.py
  • scripts/ima_tool.py
Commands it runs
python skills/ima-notes/scripts/ima_notes_tool.py <command> ...
python skills/ima-notes/scripts/ima_notes_tool.py search-notes --keyword "周报"
python skills/ima-notes/scripts/ima_notes_tool.py search-notes --search-field content --keyword "复盘"
python skills/ima-notes/scripts/ima_notes_tool.py read-note --title "会议纪要"
python skills/ima-notes/scripts/ima_notes_tool.py list-notes --limit 20
python skills/ima-notes/scripts/ima_notes_tool.py create-note --title "新笔记" --content "正文"
python skills/ima-notes/scripts/ima_notes_tool.py append-note --title "会议纪要" --content "补充内容"
More from CountBot
All skills →
About this skill
What does the ima-notes skill do?

通过 IMA OpenAPI 处理笔记任务。支持搜索笔记、读取笔记、列出笔记、新建笔记、追加笔记。用户提到笔记、备忘录、记一下、追加到某篇笔记时使用。

How do I install it?

Run `npx skills add countbot-ai/CountBot --skill ima-notes --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From countbot-ai/CountBot, a repository with 760 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going