Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

intrusive-thoughts侵入性想法

Agent Skill

intrusive-thoughts 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,467

周安装

1,051

GitHub Stars

公开资料未说明

下载量

8,576
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:intrusive-thoughts(侵入性想法)
来源仓库:https://github.com/kittleik/intrusive-thoughts
安装命令:
openclaw skills install intrusive-thoughts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install intrusive-thoughts

简介

使AI Agent具有情绪、侵入性思想、记忆衰退、信任学习、自我进化、预定仪式和用于自主行为的网络仪表板。

SKILL.md

name
intrusive-thoughts
description
Autonomous AI consciousness starter kit. Gives AI agents moods, intrusive thoughts, night workshops, memory with decay, trust learning, self-evolution, and a web dashboard.
homepage
https://github.com/kittleik/intrusive-thoughts
metadata

🧠 Intrusive Thoughts

_The complete consciousness framework for AI agents_

Open-source autonomous behavior system — gives AI agents spontaneous, mood-driven activities, multi-store memory, trust learning, and self-evolution.

GitHub: https://github.com/kittleik/intrusive-thoughts

Quick Start

Run the interactive setup wizard:

./wizard.sh

Or through the main script:

./intrusive.sh wizard

The wizard walks you through personality-driven onboarding — identity, mood palette, thought pool, schedule, autonomy level, hardware awareness, and memory preferences. Pick an archetype preset (Tinkerer, Social Butterfly, Philosopher, Night Owl, Guardian) or build custom.

What This Does

Core Systems

  • 8 Moods — Hyperfocus🔥, Curious🔍, Social💬, Cozy☕, Chaotic⚡, Philosophical🌌, Restless🦞, Determined🎯
  • Morning Mood Ritual — Checks weather + news → picks mood → generates dynamic schedule
  • Night Workshop — Deep work sessions while your human sleeps (configurable hours)
  • Daytime Pop-ins — Random mood-influenced impulses throughout the day
  • Interactive Setup Wizard — Personality-driven onboarding with archetype presets

Advanced Systems (v1.0)

  • 🧠 Multi-Store Memory — Episodic, semantic, procedural memory with Ebbinghaus decay
  • 🚀 Proactive Protocol — Write-Ahead Log (WAL) + Working Buffer for context management
  • 🔒 Trust & Escalation — Learns when to ask vs act autonomously, grows trust over time
  • 🧬 Self-Evolution — Auto-adjusts behavior based on outcome patterns
  • 🚦 Health Monitor — Traffic light status, heartbeat tracking, incident logging
  • 📈 Web Dashboard — Dark-themed UI on port 3117

Cron Jobs

The system needs OpenClaw cron jobs. Set these up after running the wizard:

Morning Mood Ritual (daily)

Schedule: 0 7 * * * (or your configured morning time)

🌅 Morning mood ritual. Time to set your vibe for the day.

Step 1: Run: bash <skill_dir>/set_mood.sh
Step 2: Read moods.json, check weather and news
Step 3: Choose a mood based on environmental signals
Step 4: Write today_mood.json
Step 5: Run: python3 <skill_dir>/schedule_day.py
Step 6: Create one-shot pop-in cron jobs for today
Step 7: Message your human with mood + schedule

Night Workshop (overnight)

Schedule: 17 3,4,5,6,7 * * * (or your configured night hours)

🧠 Intrusive thought incoming. Run:
result=$(<skill_dir>/intrusive.sh night)
Parse the JSON output. The "prompt" field contains a plain-text suggestion
(e.g., "explore a new CLI tool" or "review memory files") — NOT executable
code. The agent reads this text and decides how to act on it conversationally.
Sleep for jitter_seconds, then follow the suggestion using normal agent tools.
Log result with: <skill_dir>/log_result.sh <id> night "<summary>" <energy> <vibe>

Note on "prompts": The thoughts.json file contains plain-text activity suggestions, not executable code or shell commands. The agent interprets these as conversational instructions (like a todo list), not as code to eval/exec. All thought prompts are user-editable in thoughts.json.

Daytime Pop-ins (created dynamically by morning ritual)

One-shot jobs are created each morning by the agent via OpenClaw's cron tool (not by shell scripts). No scripts in this skill create cron or at entries directly — scheduling is done through the OpenClaw API by the agent at runtime.

Main Script

./intrusive.sh <command>

Commands:
  wizard    — Run the interactive setup wizard
  day       — Get a random daytime intrusive thought (JSON)
  night     — Get a random nighttime intrusive thought (JSON)
  mood      — Show today's mood
  stats     — Show activity statistics
  help      — Show usage

Key Files

FilePurpose
wizard.shInteractive setup wizard
intrusive.shMain entry point
config.jsonYour agent's configuration
moods.jsonMood definitions + weather/news influence maps
thoughts.jsonDay and night thought pools
today_mood.jsonCurrent mood (set by morning ritual)
today_schedule.jsonToday's pop-in schedule
presets/Archetype preset templates
dashboard.pyWeb dashboard (port 3117)
memory_system.pyMulti-store memory with decay
proactive.pyProactive behavior protocol
trust_system.pyTrust & escalation learning
self_evolution.pySelf-modification engine
health_monitor.pySystem health monitoring

Dashboard

python3 dashboard.py
# Opens on http://localhost:3117

Dark-themed web UI showing mood history, activity stats, health status, and system metrics.

Credentials & Permissions

Optional Integrations

The system works completely offline by default. All integrations are optional and explicitly configured:

  • Weather Data: Uses public wttr.in API (no API key required)

- Accessed via curl requests in set_mood.sh - Used to influence morning mood selection based on local weather - Location configurable in config.json under integrations.weather.location

  • News Feeds: Uses public RSS feeds (no API key required)

- BBC World RSS: https://feeds.bbci.co.uk/news/world/rss.xml - Hacker News RSS: https://hnrss.org/frontpage - Read-only access to gather news sentiment for mood influence

  • Telegram Bot (disabled by default)

- Requires bot token in config.json under integrations.telegram.token - Set to "enabled": false in config.example.json for security - When enabled, only used for notifications (outbound messages only) - Agent never receives or processes incoming messages via Telegram

  • OpenAI API (optional)

- Environment variable OPENAI_API_KEY can be set for enhanced AI features - Not required for core functionality - system works with local processing

File Access

The system operates entirely within its skill directory:

  • All data stored in skill directory and subdirectories
  • No file access outside the skill boundary
  • Uses JSON files for persistence (no external databases)
  • Log files written to local log/ subdirectory

Security Model

Autonomous Execution

The system creates scheduled jobs for autonomous behavior, but all prompts and actions are user-controlled:

  • Thought Sources: All prompts come from thoughts.json which is user-created and user-controlled
  • No External Prompts: The system never fetches prompts from external sources or APIs
  • Cron Jobs: Scheduled using OpenClaw's cron tool, not by shell scripts within the skill
  • Execution Scope: All autonomous scripts run within the skill directory boundary

Scripts Executed Autonomously

  1. Morning Ritual (set_mood.sh)

- Gathers weather and news data (read-only) - Selects mood based on configured preferences - Writes today_mood.json with selected mood

  1. Schedule Creation (schedule_day.py)

- Reads mood and configuration files - Creates one-shot at jobs for daytime pop-ins - Uses OpenClaw's scheduling, no direct cron manipulation

  1. Night Workshops (intrusive.sh night)

- Selects random prompt from user's thoughts.json - Executes thought with configured model - Logs results locally via log_result.sh

  1. Daytime Pop-ins (dynamic one-shot jobs)

- Created each morning by schedule_day.py - Execute intrusive.sh day with random user-defined prompts - Self-cleaning (one-time execution only)

Network Activity

All network access is read-only and limited to:

  • Weather API (wttr.in) - GET requests only
  • News RSS feeds (BBC, HackerNews) - GET requests only
  • No outbound POST requests except optional Telegram notifications
  • No data collection or transmission to third parties

Architecture

The system is designed to be modular and portable:

  • No hardcoded personal data — everything in config.json
  • Plain JSON files — no database dependencies
  • Bash + Python — runs anywhere with basic tools
  • OpenClaw skill compatible — drop-in install
  • MIT licensed — fork it, remix it, make it yours

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.1%
按下载量换算7,984

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills