Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Second Brain v2 — OpenClaw Memory Intelligence Skill Second Brain v2 — OpenClaw Memory Intelligence Skill **Transform your agent from forgetful to brilliant with automated memory management.** Overview Second Brain v2 is an OpenClaw skill that solves the #1 AI agent problem in 2026: memory loss between sessions. Your agent wakes up fresh every time, relying on manually-written memory files that quickly become stale. This skill automates the entire memory lifecycle: - * Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
second-brain is best for be workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Second Brain v2 — OpenClaw Memory Intelligence Skill Second Brain v2 — OpenClaw Memory Intelligence Skill **Transform your agent from forgetful to brilliant with automated memory management.** Overview Second Brain v2 is an OpenClaw skill that solves the #1 AI agent problem in 2026: memory loss between sessions. Your agent wakes up fresh every time, relying on manually-written memory files that quickly become stale. This skill automates the entire memory lifecycle: - *
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Jugaad Lab
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/jugaad-lab/second-brain.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Jugaad Lab
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# Install the skill (if using OpenClaw skill manager) openclaw skill install second-brain # Or clone directly git clone <repo> ~/workspace/skills/second-brain
bash
export ANTHROPIC_API_KEY="your_key_here"
bash
python3 scripts/search.py "DPU debugging decisions" python3 scripts/search.py --date-range "2026-02-01,2026-02-14" "Discord bot features"
bash
python3 scripts/stats.py
bash
# Extract from today's sessions python3 scripts/extract_v2.py --date today # Extract specific session python3 scripts/extract_v2.py ~/path/to/session.jsonl
bash
# Dry run (see proposed changes) python3 scripts/consolidate.py --days 7 --dry-run # Apply consolidation python3 scripts/consolidate.py --days 7 --apply
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Second Brain v2 — OpenClaw Memory Intelligence Skill Second Brain v2 — OpenClaw Memory Intelligence Skill **Transform your agent from forgetful to brilliant with automated memory management.** Overview Second Brain v2 is an OpenClaw skill that solves the #1 AI agent problem in 2026: memory loss between sessions. Your agent wakes up fresh every time, relying on manually-written memory files that quickly become stale. This skill automates the entire memory lifecycle: - *
Transform your agent from forgetful to brilliant with automated memory management.
Second Brain v2 is an OpenClaw skill that solves the #1 AI agent problem in 2026: memory loss between sessions. Your agent wakes up fresh every time, relying on manually-written memory files that quickly become stale. This skill automates the entire memory lifecycle:
Query your memories naturally: remember search "when did we decide on GPT-4.1?"
Automatically distills daily memories into your MEMORY.md file with smart deduplication
Relevance scoring with configurable decay (decisions matter more than transient notes)
Fully automated memory processing that runs in background via cron
Track memory growth, coverage gaps, and consolidation freshness
Visualize relationships between people, projects, and decisions
# Install the skill (if using OpenClaw skill manager)
openclaw skill install second-brain
# Or clone directly
git clone <repo> ~/workspace/skills/second-brain
pip install anthropic)pip install pyyaml)Set your Anthropic API key:
export ANTHROPIC_API_KEY="your_key_here"
Or configure it in OpenClaw auth profiles at ~/.openclaw/agents/main/agent/auth-profiles.json.
python3 scripts/search.py "DPU debugging decisions"
python3 scripts/search.py --date-range "2026-02-01,2026-02-14" "Discord bot features"
python3 scripts/stats.py
# Extract from today's sessions
python3 scripts/extract_v2.py --date today
# Extract specific session
python3 scripts/extract_v2.py ~/path/to/session.jsonl
# Dry run (see proposed changes)
python3 scripts/consolidate.py --days 7 --dry-run
# Apply consolidation
python3 scripts/consolidate.py --days 7 --apply
# Test the full pipeline
python3 scripts/pipeline.py --dry-run
# Schedule via OpenClaw cron (recommended)
# Add to your agent's cron config
# Natural language search
python3 scripts/search.py "your query here"
# Advanced options
python3 scripts/search.py \
--date-range "2026-02-01,2026-02-14" \
--limit 5 \
--format json \
"decision about model choice"
# Extract from date
python3 scripts/extract_v2.py --date 2026-02-14
# Extract specific session
python3 scripts/extract_v2.py session_123.jsonl
# Enhanced output with entities
python3 scripts/extract_v2.py --structured session.jsonl
# Dry run (preview only)
python3 scripts/consolidate.py --dry-run
# Consolidate last 7 days
python3 scripts/consolidate.py --days 7 --apply
# Interactive mode
python3 scripts/consolidate.py --interactive
# Score all memories
python3 scripts/score.py --reindex
# Show top-scored memories
python3 scripts/score.py --show-top 20
# Update scores only
python3 scripts/score.py --update-only
# Memory health dashboard
python3 scripts/stats.py
# Detailed breakdown
python3 scripts/stats.py --detailed
# Export for external tools
python3 scripts/stats.py --format json
# Build entity relationship graph
python3 scripts/graph.py --build
# Query graph
python3 scripts/graph.py --query "DpuDebugAgent"
# Export graph data
python3 scripts/graph.py --export graph.json
# Full pipeline (recommended for cron)
python3 scripts/pipeline.py
# Pipeline with custom config
python3 scripts/pipeline.py --config my_config.yaml
# Dry run mode
python3 scripts/pipeline.py --dry-run
Default config is in config.yaml. Override by creating your own config file:
memory_dir: ~/workspace/memory
session_dir: ~/.openclaw/agents/main/sessions
memory_md: ~/workspace/MEMORY.md
consolidation:
interval_days: 7
dry_run: false
min_score: 0.5
backup_memory_md: true
scoring:
decay_half_life_days: 14
category_weights:
decisions: 1.5
preferences: 1.3
facts: 1.0
action_items: 1.2
transient: 0.5
search:
use_qmd: true
fallback: bm25
max_results: 10
highlight_matches: true
pipeline:
extract_recent: true
update_qmd: true
generate_report: true
consolidate_threshold: 5 # Min new memories before consolidation
Add to your OpenClaw agent's cron configuration:
jobs:
- name: "memory-pipeline"
schedule: "0 2 * * *" # 2 AM daily
command: "python3 ~/workspace/skills/second-brain/scripts/pipeline.py"
enabled: true
The skill is designed to work seamlessly with OpenClaw agents. Commands can be called directly from sessions:
# In your agent code
exec(command="python3 ~/workspace/skills/second-brain/scripts/search.py 'recent decisions'")
~/workspace/skills/second-brain/
├── SKILL.md # This file
├── README.md # Full documentation
├── config.yaml # Default configuration
├── scripts/
│ ├── search.py # Semantic memory search
│ ├── consolidate.py # Auto-consolidation engine
│ ├── score.py # Memory scoring & decay
│ ├── extract_v2.py # Enhanced extraction
│ ├── pipeline.py # Nightly automation
│ ├── stats.py # Health dashboard
│ ├── graph.py # Entity relationships
│ ├── extract.py # Original extractor (legacy)
│ ├── digest.py # Original digester (legacy)
│ ├── weekly.py # Weekly analysis (legacy)
│ └── utils/
│ ├── memory_io.py # Memory file operations
│ ├── scoring.py # Scoring algorithms
│ ├── qmd_bridge.py # qmd search integration
│ └── bm25.py # Pure Python BM25 implementation
├── tests/
│ ├── test_search.py
│ ├── test_scoring.py
│ ├── test_consolidation.py
│ └── test_pipeline.py
└── examples/
├── sample_config.yaml
└── cron_setup.md
The skill works with OpenClaw's standard memory organization:
~/workspace/memory/
├── 2026-02-01.md # Daily memory files
├── 2026-02-02.md
├── ...
├── .memory-index.json # Scored memory index
├── .pipeline-log.json # Pipeline execution log
└── .entity-graph.json # Entity relationships
Plus your main memory file:
~/workspace/MEMORY.md # Long-term consolidated memories
~/workspace/memory/python3 scripts/score.py --reindexqmd update && qmd embedpython3 -c "from scripts.utils.memory_io import get_api_key; print('OK')"--dry-run first to see what would be consolidatedpython3 scripts/pipeline.py --dry-run to see what would happen~/workspace/memory/.pipeline-log.json~/workspace/memory/MEMORY.md is writable--applyThis is an OpenClaw skill. Improvements welcome:
MIT License - Use freely in your OpenClaw setups.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/snapshot"
curl -s "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/contract"
curl -s "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:46:51.788Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Jugaad Lab",
"href": "https://github.com/jugaad-lab/second-brain",
"sourceUrl": "https://github.com/jugaad-lab/second-brain",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:46.757Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:46.757Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/jugaad-lab/second-brain",
"sourceUrl": "https://github.com/jugaad-lab/second-brain",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:46.757Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/jugaad-lab-second-brain/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to second-brain and adjacent AI workflows.