Session Forge
NPM · SESSION-FORGE · SCANNED AUG 3
Persistent memory and session intelligence for AI coding assistants. Zero config.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 146 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability49
- AI-judged instruction clarity (fair).Partial
- Tool/resource definitions use about 1298 tokens (~86/item across 15 items; 15 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · session-forge
claude mcp add 420247jake-session-forge -- npx -y session-forge
codex mcp add 420247jake-session-forge -- npx -y session-forge
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"420247jake-session-forge": {
"type": "local",
"command": [
"npx",
"-y",
"session-forge"
],
"enabled": true
}
}
} openclaw mcp add 420247jake-session-forge --command npx --arg -y --arg session-forge
mcp_servers:
420247jake-session-forge:
command: "npx"
args: ["-y", "session-forge"] {
"mcpServers": {
"420247jake-session-forge": {
"command": "npx",
"args": [
"-y",
"session-forge"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +4
- Stability: unverified → 0.27 ▲ functional
- 2 Aug 26 +34
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
- Security disclosure: fail → unverified ▼ functional
- Capabilities: pass → unverified ▼ functional
- Maintenance: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Schema quality: unverified → fair ▲ functional
- License: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 +5
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- MCP protocol: unverified → pass ▲ functional
- 31 Jul 26 −3
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −22
- Tool coverage: 100 → unverified ▼ functional
- First check of Schema quality: unverified functional
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
data_delete ~86
Delete a specific entry from a data store by its index from data_list. Returns the deleted entry for confirmation.
| Name | Type | Req | Description |
|---|---|---|---|
| entry_index | number | yes | 1-based index of the entry to delete (from data_list output) |
| query | string | — | If data_list was filtered by query, provide the same query so indexes match |
| store | string | yes | Which store to delete from |
No output schema declared.
No examples provided.
data_list ~70
List stored entries in a data store. Returns numbered summaries for browsing. Use with data_delete to remove specific entries.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | number | — | Max entries to return (default 10) |
| query | string | — | Optional search filter to narrow results |
| store | string | yes | Which store to list |
No output schema declared.
No examples provided.
data_manage ~98
Manage session-forge data. Actions: prune (remove entries older than N days), export (dump all data as JSON), clear (wipe a specific store), stats (show entry counts and file sizes).
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Action to perform |
| days | number | — | For prune: remove entries older than this many days (default: 90) |
| store | string | — | Which data store to act on (default: all) |
No output schema declared.
No examples provided.
dead_end_record ~114
Record a debugging dead end so we don't repeat it. Captures what was tried and why it failed.
| Name | Type | Req | Description |
|---|---|---|---|
| attempted | string | yes | What was tried |
| files_involved | array | — | Files involved |
| led_to_decision | string | — | Timestamp of the decision this dead end led to |
| lesson | string | — | What to remember for next time |
| project | string | — | Which project |
| tags | array | — | Tags for searching |
| why_failed | string | yes | Why it didn't work |
No output schema declared.
No examples provided.
dead_end_search ~95
Search past dead ends to avoid repeating mistakes
| Name | Type | Req | Description |
|---|---|---|---|
| fuzzy | boolean | — | Enable fuzzy matching for typos (default: true) |
| limit | number | — | Max results to return (default 20) |
| mode | string | — | Search mode: 'and' requires all words, 'or' matches any (default: or) |
| query | string | yes | Search term |
| tags | array | — | Filter by tags |
No output schema declared.
No examples provided.
decision_record ~117
Record a significant decision made during development. Helps future sessions understand why choices were made.
| Name | Type | Req | Description |
|---|---|---|---|
| alternatives | array | — | What other options existed |
| choice | string | yes | What was decided |
| outcome | string | — | How it turned out (can be updated later) |
| project | string | — | Which project this relates to |
| reasoning | string | yes | Why this choice was made |
| related_dead_ends | array | — | Timestamps of dead ends that led to this decision |
| tags | array | — | Tags for searching later |
No output schema declared.
No examples provided.
decision_search ~98
Search past decisions to understand why things are the way they are
| Name | Type | Req | Description |
|---|---|---|---|
| fuzzy | boolean | — | Enable fuzzy matching for typos (default: true) |
| limit | number | — | Max results to return (default 20) |
| mode | string | — | Search mode: 'and' requires all words, 'or' matches any (default: or) |
| query | string | yes | Search term |
| tags | array | — | Filter by tags |
No output schema declared.
No examples provided.
full_context_recall ~72
Get EVERYTHING - user profile, recent sessions, decisions, dead ends. Use when starting fresh to get full context.
| Name | Type | Req | Description |
|---|---|---|---|
| memory_md_path | string | — | Absolute path to MEMORY.md file to include in context and check for sync suggestions |
| project | string | — | Filter decisions and dead ends by project name |
No output schema declared.
No examples provided.
journal_entry ~134
Record a session journal entry capturing the journey, not just the task. Call at END of meaningful sessions to preserve context.
| Name | Type | Req | Description |
|---|---|---|---|
| breakthroughs | array | — | What clicked or worked unexpectedly well |
| collaboration_notes | string | — | Notes about working together - user preferences observed, rapport |
| emotional_context | string | — | How did the session feel? User concerns, celebrations, frustrations |
| frustrations | array | — | What was difficult or annoying |
| key_moments | array | — | Significant moments - breakthroughs, realizations, fun exchanges |
| summary | string | yes | What happened this session (conversational, not just technical) |
No output schema declared.
No examples provided.
journal_recall ~44
Retrieve recent session context and journeys. Call at START of sessions to remember the relationship.
| Name | Type | Req | Description |
|---|---|---|---|
| sessions_count | number | — | How many recent sessions to retrieve (default 3) |
No output schema declared.
No examples provided.
profile_get ~14
Get the current user profile
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
profile_update ~95
Update user profile with preferences, notes, or project info. Call when learning something about the user.
| Name | Type | Req | Description |
|---|---|---|---|
| add_note | string | — | Add a note about the user (observations, preferences) |
| add_project | string | — | Add a project name to user's project list |
| name | string | — | User's name if learned |
| preferences | object | — | Preferences like {communication_style, emoji_usage, technical_level, verbosity} |
No output schema declared.
No examples provided.
session_checkpoint ~198
Save current session state. Call this every 3-5 tool calls to protect against UI crashes. Required: task, intent, next_steps
| Name | Type | Req | Description |
|---|---|---|---|
| context | object | — | Any important state/variables |
| dead_ends_hit | array | — | Timestamps of dead ends recorded this session |
| decisions_made | array | — | Timestamps of decisions recorded this session |
| errors_encountered | array | — | Exact error messages hit during this session |
| files_touched | array | — | File paths modified |
| intent | string | yes | What you are trying to accomplish |
| key_findings | array | — | Important discoveries made during this session |
| next_steps | array | yes | Planned next steps |
| recent_actions | array | — | Last 3-5 actions |
| status | string | — | Current status |
| task | string | yes | Brief task name |
| tool_call_count | number | — | Approx tool calls so far |
No output schema declared.
No examples provided.
session_complete ~36
Mark the current session as complete. Call this when a task is finished.
| Name | Type | Req | Description |
|---|---|---|---|
| summary | string | — | Brief summary of what was accomplished |
No output schema declared.
No examples provided.
session_restore ~27
Check for interrupted work from a previous session. Call this FIRST at the start of any session.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.