SkillsLLM
CategoriesBlogAI NewsAbout
HomeAI Agentsvibeship-spark-intelligence

vibeship-spark-intelligence

by vibeforge1111

Pending

a self-evolving intelligent companion

114stars
30forks
Python
Added 3/9/2026
View on GitHubDownload ZIP
AI AgentsSKILL.mdaiclaude-codecursordeveloper-toolsintelligencelocal-firstmachine-learningopen-sourceself-evolving
Installation
# Add to your Claude Code skills
git clone https://github.com/vibeforge1111/vibeship-spark-intelligence
SKILL.md

name: spark description: "Self-evolving intelligence layer. Auto-captures learnings from tool usage, stores in Mind, writes to markdown, and promotes high-value insights to CLAUDE.md/AGENTS.md. Use when: (1) Starting a new session to load cognitive context, (2) After errors to learn from failures, (3) When patterns emerge to extract skills, (4) Periodically to sync and promote learnings."

Spark

Self-evolving intelligence layer for AI agents.

What It Does

Spark automatically:

  1. Observes every tool call and its outcome
  2. Learns cognitive patterns (not just what worked, but WHY)
  3. Stores learnings in Mind for semantic retrieval
  4. Writes human-readable logs to .learnings/
  5. Promotes proven insights to CLAUDE.md/AGENTS.md
  6. Extracts recurring patterns into reusable skills

Quick Reference

| Situation | Action | |-----------|--------| | Session start | Spark auto-loads relevant cognitive context | | Tool fails | Spark captures error pattern, suggests recovery | | Pattern validated 3+ times | Consider promotion to CLAUDE.md | | Recurring workflow identified | Extract as skill | | Mind available | Sync for cross-project learning |

Cognitive Categories

Spark learns in these categories:

| Category | What It Learns | |----------|----------------| | self_awareness | Overconfidence, blind spots, struggle areas | | user_understanding | Preferences, expertise, communication style | | reasoning | WHY things work, not just that they work | | context | When patterns apply vs don't apply | | wisdom | General principles across contexts | | meta_learning | How to learn, when to ask vs act | | communication | Explanation styles that work |

CLI Commands

# Check system status
python cli.py status

# Sync to Mind
python cli.py sync

# Write learnings to markdown
python cli.py write

# Promote ready insights
python cli.py promote

# Sync bootstrap context to platform files
python cli.py sync-context

# Preview/apply decay-based pruning
python cli.py decay

# View recent learnings
python cli.py learnings --limit 20

Integration

With Claude Code

Add to .claude/settings.json:

{
  "hooks": {
    "PostToolUse": [{
      "matcher": "",
      "hooks": [{
        "type": "command", 
        "command": "python /path/to/Spark/hooks/observe.py"
      }]
    }],
    "PostToolUseFailure": [{
      "matcher": "",
      "hooks": [{
        "type": "command",
        "command": "python /path/to/Spark/hooks/observe.py"
      }]
    }]
  }
}

With Clawdbot

Spark automatically syncs learnings to workspace files:

  • AGENTS.md — Workflow patterns
  • TOOLS.md — Tool insights
  • SOUL.md — User preferences

With Mind

When Mind is running (python -m mind.lite_tier), Spark syncs learnings for:

  • Semantic search across all learnings
  • Cross-project pattern transfer
  • Decision tracking and outcome attribution

Output Files

| File | Contents | |------|----------| | .learnings/LEARNINGS.md | All cognitive insights | | .learnings/ERRORS.md | Error patterns and recoveries | | ~/.spark/cognitive_insights.json | Raw insight data | | ~/.spark/queue/events.jsonl | Event queue |

Promotion Criteria

Insights are auto-promoted when:

  • Reliability ≥ 70%
  • Validated ≥ 3 times
  • Not already promoted

Promotion targets:

  • CLAUDE.md — Wisdom, reasoning, context rules
  • AGENTS.md — Meta-learning, self-awareness
  • TOOLS.md — Tool-specific context rules
  • SOUL.md — User understanding, communication

API

from lib import (
    get_cognitive_learner,
    sync_all_to_mind,
    write_all_learnings,
    check_and_promote,
)

# Get learner instance
cognitive = get_cognitive_learner()

# Learn something
cognitive.learn_why(
    what_worked="Read before Edit",
    why_it_worked="Prevents content mismatch errors",
    context="File editing workflow"
)

# Sync to Mind
sync_all_to_mind()

# Write to markdown
write_all_learnings()

# Promote proven insights
check_and_promote()

Part of Vibeship

  • Mind — Persistent memory with semantic search
  • Spark — Self-evolving intelligence (this)
  • Spawner — Skill loading and orchestration
  • H70 — 500+ expert skills
README.md
<p align="center"> <a href="https://spark.vibeship.co"><img src="header.png" alt="Spark Intelligence" width="100%"></a> </p> <p align="center"> <a href="https://github.com/vibeforge1111/vibeship-spark-intelligence/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License"></a> <img src="https://img.shields.io/badge/python-3.10+-blue?style=flat-square" alt="Python"> <img src="https://img.shields.io/badge/runs-100%25_local-green?style=flat-square" alt="Local"> <img src="https://img.shields.io/badge/platform-Win%20%7C%20Mac%20%7C%20Linux-lightgrey?style=flat-square" alt="Platform"> </p>

Learns constantly. Adapts with your flow. Runs 100% on your machine as a local AI companion that turns past work into future-ready behavior. It is designed to be beyond a learning loop.

You do work -> Spark captures memory -> Spark distills and transforms it -> Spark delivers advisory context -> You act with better context -> Outcomes re-enter the loop

What is Spark?

Spark Intelligence is a self-evolving AI companion designed to grow smarter through use.

It is:

  • Not a chatbot.
  • Not a fixed rule set.
  • A living intelligence runtime that continuously converts experience into adaptive operational behavior, not just stored memory.

The goal is to keep context, patterns, and practical lessons in a form that your agent can actually use at the right moment.

Beyond a Learning Loop: Intelligence Operating Flow

  • Capture: hooks and events from your agent sessions are converted into structured memories.
  • Distill: noisy data is filtered into reliable, action-oriented insights.
  • Transform: high-value items are shaped for practical reuse (prioritized by reliability, context match, and usefulness).
  • Store: distilled wisdom is persisted and versioned in local memory stores.
  • Act: advisory and context updates are prepared for the right point in workflow.
  • Guard: gating layers check quality, authority, cooldown, and dedupe before any advisory is surfaced.
  • Learn: outcomes and follow-through are fed back to refine future recommendations.

Install

Prerequisites:

  • Python 3.10+ (Windows one-liner auto-installs latest Python 3 via winget when missing)
  • pip
  • Git
  • Windows one-liner path: PowerShell
  • Mac/Linux one-liner path: curl + bash

Windows one-command bootstrap (clone + venv + install + start + health):

irm https://raw.githubusercontent.com/vibeforge1111/vibeship-spark-intelligence/main/install.ps1 | iex

Optional re-check (from repo root):

.\.venv\Scripts\python -m spark.cli up
.\.venv\Scripts\python -m spark.cli health

If you already cloned the repo, run the local bootstrap:

.\install.ps1

If you are running from cmd.exe or another shell:

powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/vibeforge1111/vibeship-spark-intelligence/main/install.ps1 | iex"
``...
Comments (0)
to leave a comment.

No comments yet. Be the first to share your thoughts!

Related Skills

n8n

by n8n-io

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
178,903
55,726
TypeScript
MCP Serversaiapis
View details
gemini-cli

by google-gemini

An open-source AI agent that brings the power of Gemini directly into your terminal.
97,469
12,195
TypeScript
AI Agentsaiai-agents
View details
everything-claude-code

by affaan-m

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
73,757
9,228
JavaScript
AI Agentsai-agentsanthropic
View details
TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。
48,795
22,617
Python
MCP Serversaibark
View details
awesome-claude-skills

by ComposioHQ

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
43,513
4,373
Python
AI Agentsagent-skillsai-agents
View details
chatgpt-on-wechat

by zhayujie

CowAgent是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、拥有长期记忆并不断成长。同时支持飞书、钉钉、企业微信应用、微信公众号、网页等接入,可选择OpenAI/Claude/Gemini/DeepSeek/ Qwen/GLM/Kimi/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助手和企业数字员工。
42,164
9,820
Python
AI Agentsaiai-agent
View details