smarter-project

smarter-project is a skill for Claude Code from theseussss/roamfound. It costs 52 tokens per session (9,358 once invoked), scanned A, original, MIT.

A project-management workflow that organises work into topics and stores each topic in Markdown files: a discussion record, a conclusions card, and optionally a task list.

In plain words
What is it for?
Use it to create and maintain project topics, record discussions, manage conclusions and tasks, validate file structure, and generate project visualisations.
Why use it?
It preserves the reasoning and decisions from conversations in files that can be searched, reviewed, and continued later.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions CLAUDE.md; mentions AGENTS.md; mentions Codex.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the jiacong-flow plugin — 2 skills, 1 command shipped together

Good fit Use it to create and maintain project topics, record discussions, manage conclusions and tasks, validate file structure, and generate project visualisations.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add theseussss/roamfound
Claude Code
/plugin install jiacong-flow

Made for: Claude Code.

Or install jiacong-flow, the plugin that ships this one along with the rest of its 2 skills, 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for smarter-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/theseussss/roamfound/smarter-project.svg)](https://agentmods.dev/skills/theseussss/roamfound/smarter-project)
Your own site
<a href="https://agentmods.dev/skills/theseussss/roamfound/smarter-project"><img src="https://agentmods.dev/badge/skills/theseussss/roamfound/smarter-project.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,358 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.09358
Opus 5 $0.00026 $0.04679
Sonnet 5 $0.00010 $0.01872
Haiku 4.5 $0.00005 $0.00936

Measured 8d ago against content hash a3fb570dbc3b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

smarter-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 27 executable files (scripts/_lib/__init__.py, scripts/_lib/autofix.py, scripts/_lib/common.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/smarter-project/SKILL.md · 411 lines

How it starts

The opening of the file, as written. The whole thing — 411 lines — stays where its author put it; the contents beside it link to each section on GitHub.

smarter-project

⚠️ 执行规约(非知识文档)。读完要跑脚本、要写 scratch,不是只"理解"。

你在一个项目中和用户反复对话,讨论会产生大量认知碎片。如果这些碎片散落在对话历史里,下次开会话时它们就消失了。smarter-project 解决的就是这个问题——把讨论中产生的认知组织成可持久、可检索、可继续推进的结构。

做法是话题化:每一个值得追踪的讨论方向,都开一个话题目录(topics/NNN_简称/),里面放三件套——

文件 性质 承载
scratch.md 讨论卡 每轮追加,不删不清 原始讨论过程——"当时怎么想的"
card.md 话题卡 唯一真理源 从讨论中提炼的结构化结论
tasks.md 任务卡 可选 从话题派生的执行步骤

基础话题卡(base_topic: true)可选生成第四组件 template.md,承载建构说明、可重复单元模板与地图渲染约定。普通话题默认三件套,需要时通过 --with-template 生成。详见 references/base-topic-templates.md

话题文件夹里也允许放额外文件(诊断报告、方案草稿等),但必须在 scratch 对应条目中索引,确保能追溯来源。

每个文件顶部有 YAML frontmatter(topic_idstatusparentroot 等)。card.md 以 frontmatter toc: 为唯一结构源(格式与约束详见 §2.1 话题),正文 ## 📑 本卡目录 只是由脚本渲染的只读视图。status 标记生命周期阶段,完整流转判据见 references/topic-lifecycle.md

全部状态落在 markdown 文件中,不做数据库,打开编辑器就能审计。Python 脚本(scripts/*.py)负责建话题、校验结构、生成可视化等操作——AI 必须调用脚本,禁止手工 mkdir + 手写文件替代,因为脚本才能保证格式一致。

现有 HTML 仪表盘(dashboard.htmlrole_manager.html_tree.md 可视化)是未来统一 GUI 的理念基石。

下面按实际执行流来组织。<skill> = ${CLAUDE_PLUGIN_ROOT}/skills/smarter-project

§ 内容 管什么
1.1 总纲 全局设计原则
1.2 会话启动 判断是否建项目、体检、首段输出
1.3 每轮循环 焦点检查 → 角色 → 执行 → 写 scratch
2.1 话题 三件套的建、改、迁移、收敛、额外文件
2.2 记录机制 scratch / log / tasks.md / Trace(追踪)话题四层分工
3.1 角色 蒸馏高手,视角一以贯之
3.2 初始化 套餐 + 基础话题卡集
4 审查 结构对齐与一致性检查

§1.1 · 总纲

三条全局原则,贯穿后续所有章节。

md 唯一真理源。 讨论与结论状态在 markdown 文件的 frontmatter 和正文中;项目运行态、缓存和派生视图默认落在 .jiacong/ 下,可删除重建。不做数据库、不做双写。旧 .claude/ 只作 Claude hook 配置或 legacy fallback。

结构权归用户。 结构变更——改 TOC、增删章节、新建话题、偏离套餐——由 AI 提议、用户审批。内容填充(在已有章节内写正文)由 AI 动笔、用户校对。用户未明确批准的提议一律视为拒绝:有效批准词是"同意/通过/可以/就这样/对/行/OK/去做/开搞";含糊回复(嗯/哦/知道了/好)须追问确认。

脚本优先。 凡有对应脚本的操作,AI 必须调用脚本。手工替代是最常见的执行偏差来源。


§1.2 · 会话启动

会话第一轮有一个额外判断:这个对话需不需要项目管理?

如果用户只是随手问个问题、做个一次性查询,skill 不介入,直接回答。如果任务涉及多轮协作、需要持久化认知(论文写作、方案设计、代码项目等),就需要建档。不确定时,问用户。

建档前必须先做入口分类:当前打开的文件夹究竟是标准 .git 项目根、workspace 容器、workspace 内 worktree、无 git 历史文件目录、多 repo 工作区,还是半建档旧结构。分类规则见 references/init-project.md §1.5。未完成入口分类前,不直接运行初始化脚本。

Read the full file on GitHub · 411 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 411 lines · 52 tokens per session scan A a3fb570dbc3b

Subscribe to this mod's changes

smarter-project is a skill published in the GitHub repository theseussss/roamfound (5 stars, last pushed 2mo ago), licensed MIT. It adds 52 tokens to every session and 9,358 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

autotask-creator

Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.

Orkas-AI/Orkas · 5 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens