소스 정보
- 저장소
- ScriptedAlchemy/tracedecay
- 최근 소스 활동
- 2026년 8월 24일 05:03
- 감지된 SKILL.md 언어
- 영어
- 스타
- 70
- 포크
- 5
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ScriptedAlchemy/tracedecay --skill tracedecay명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when Review self-improvement automation runs and activation policy.
Use when installing a TraceDecay checkout for live local development, refreshing the globally available binary without a release, or validating agents and the daemon against unmerged TraceDecay changes.
TraceDecay Dev: Use when auditing, testing, debugging, or improving TraceDecay hook hint behavior, especially Codex/Claude/Cursor hint injection, verbosity, repetition, dedupe, token efficiency, real transcript examples, synthetic scenarios, or `src/hooks/tool_hints*` changes.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | tracedecay |
| description | Prefer tracedecay tools for codebase exploration, graph queries, and memory recall. |
Use tracedecay tools before broad file reads for codebase exploration, symbol lookup, call graph traversal, impact analysis, affected files, and architectural navigation.
If a tracedecay tool invocation fails, times out, or the plugin is unavailable,
every tool is also available directly as a shell command:
tracedecay tool <name> --args '<json>' — the same JSON arguments object as the
MCP tool; pipe it via --args - (a quoted heredoc) when it contains quotes or
newlines (tracedecay tool lists all tools, tracedecay tool <name> --help
shows parameters). Hermes tool calls already run through this CLI under the hood
(passing --args <json>), so a direct shell invocation follows the same
execution path without the plugin wrapper. Fall back to it instead of querying
.tracedecay databases directly or abandoning tracedecay.
Do not invent per-key CLI flags or enum values from memory. Preserve the native
tool's exact JSON schema through --args; for example:
tracedecay tool context --args '{"task":"trace project routing","mode":"explore","max_nodes":20,"include_code":true}'
For context, the supported modes are explore and plan, and its result
budget is expressed with max_nodes / max_code_blocks, not guessed flags such
as --max-tokens or --paths. When uncertain, run
tracedecay tool <name> --help before invoking the fallback.
Hermes may keep its own host files under its Hermes home, but that path never selects a TraceDecay installation, store, or project. TraceDecay always uses the normal user-profile installation and the same profile-sharded project store used by every other host.
Project facts remain sharded: each registered project's tracedecay.db owns
its memory_facts and derived banks. Durable preferences and projectless chat
facts use the profile-level ~/.tracedecay/user-memory.db store.
~/.tracedecay/global.db remains the cross-project registry/usage database,
not a shared project-fact table with a project tag.
Resolve the code project from an explicit runtime project root when the host
provides one; otherwise use stock Hermes' logical session workspace
(agent.runtime_cwd, including its per-session gateway context) and its Git
root. Fall back to TERMINAL_CWD and only then the process working directory.
Project routing belongs to the CLI transport (--project), not to MCP tool
arguments. Do not pass storage_scope, hermes_home, a Hermes profile name,
or a configured project pin: those legacy routing inputs are not part of the
current schemas and are rejected rather than translated.
Use memory_scope=user for durable user preferences and untethered chat.
Use memory_scope=project for codebase decisions and project knowledge. In a
project, Hermes recall combines user facts with the active project's facts and
labels their provenance. Without an initialized project, Hermes uses only user
memory and does not write project LCM data into an arbitrary working directory.
fact_search (and lcm_grep for past
conversations) before reaching for web or external search — prior sessions
often already answered the question.>= 0.85 — verified, durable facts (confirmed decisions, observed behavior,
user-stated preferences).~ 0.7 — ordinary well-sourced observations.~ 0.5 — plausible but unverified; prefer not storing over storing noise.fact_add returns
diff / closest_fact_id / similarity / reason:
near_duplicate — a very similar fact exists; prefer fact_update on the
existing fact over piling on duplicates.possible_conflict — a negation/state-change cue suggests supersession;
confirm which fact is current and update or remove the stale one.rejected_secret_like — the content looked like a credential and was NOT
stored; never try to re-store secrets.