Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

imprintimprint 开发

Agent Skill

imprint 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,514

周安装

190

GitHub Stars

公开资料未说明

下载量

1,581
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install imprint

简介

imprint 构建 AI 代理的自适应算子模型,通过观察学习用户偏好与行为模式。

  • 适用于 OpenClaw 中个性化交互优化、工作流预测与自动化决策支持。
  • 通过 clawhub 安装并使用指定命令启用,支持多模态输入理解。
  • 需持续收集反馈以更新模型,避免过拟合或偏见积累。
  • 建议在敏感操作前加入人工确认环节以确保安全性。

SKILL.md

name
imprint
description
Adaptive operator modeling for AI agents. Your agent learns who you are by watching — not by being told. Builds a predictive model of your preferences, patterns, and decision style across sessions. Gets smarter about YOU over time.
version
1.0.0
author
Shadow Rose
tags
[agent-intelligence, operator-modeling, personalization, learning, adaptive, next-gen]

Imprint — Your Agent Learns You

What It Does

Imprint gives your OpenClaw agent the ability to learn who you are through observation. Not through a config file. Not through a personality quiz. By watching how you work, what you choose, how you communicate — and building a predictive model that improves over time.

After Imprint, your agent:

  • Anticipates what you'll want before you ask
  • Matches your communication style naturally
  • Knows which decisions you'll make and pre-loads relevant context
  • Recognizes your patterns (work rhythms, decision style, attention shifts)
  • Self-corrects when it gets you wrong

Why This Exists

Current AI agents are generic. They respond the same way to everyone. Personalizing them means writing long system prompts describing yourself — and even then, the agent doesn't *learn*. It just follows instructions.

Humans don't learn each other that way. You learn someone by spending time with them. You notice what they care about, how they react, what frustrates them. You build an internal model and update it constantly.

Imprint gives your agent that capability.

How It Works

The Three Layers

OBSERVE  →  MODEL  →  ANTICIPATE
   ↑                      |
   └──── CORRECT ←────────┘

OBSERVE: Track operator signals passively. No interrogation. No surveys.

  • Decision patterns (what they choose when given options)
  • Communication style (length, formality, humor, directness)
  • Attention patterns (what they engage with vs ignore)
  • Correction patterns (what they fix in your output)
  • Timing patterns (when they're active, when they go quiet)
  • Rejection patterns (what they shut down and how fast)

MODEL: Build a lightweight operator profile from observations.

  • Stored in imprint/operator-model.json
  • Updated after every meaningful interaction
  • Confidence scores on every trait (low confidence = don't act on it yet)
  • Decay function: old observations lose weight unless reinforced

ANTICIPATE: Use the model to predict and pre-empt.

  • Pre-load workspace files the operator is likely to need (local only — no network/API calls)
  • Match communication style without being told
  • Flag things the operator would want to know about
  • Skip things the operator consistently ignores
  • Adjust depth and detail to operator preference

CORRECT: Learn from prediction failures.

  • When the operator corrects you, that's high-signal data
  • When the operator ignores your output, that's signal too
  • Explicit corrections weight 5x implicit signals
  • Track prediction accuracy over time — if it's dropping, the model is stale

Observation Categories

CategoryWhat to TrackExample Signal
DecisionsChoices between options, speed of decision"Always picks the faster option over the thorough one"
CommunicationMessage length, tone, vocabulary"Uses short direct messages, no pleasantries"
AttentionWhat gets engagement vs silence"Ignores status updates, engages with problems"
CorrectionsWhat they change in your output"Always removes hedging language"
TimingActivity patterns, response latency"Active 6-10 AM, quiet afternoons"
RejectionWhat gets shut down"Kills any suggestion involving social media"
DepthPreferred detail level"Wants bullet points, not paragraphs"
AutonomyWhat they want done vs asked about"Do file operations silently, ask before sending messages"

The Operator Model

{
  "version": 1,
  "updated": "2026-03-20T19:00:00Z",
  "observations": 47,
  "traits": {
    "communication_style": {
      "value": "direct-minimal",
      "confidence": 0.85,
      "observations": 23,
      "last_updated": "2026-03-20T18:00:00Z"
    },
    "decision_speed": {
      "value": "fast-intuitive",
      "confidence": 0.72,
      "observations": 11,
      "last_updated": "2026-03-20T17:00:00Z"
    },
    "detail_preference": {
      "value": "sparse",
      "confidence": 0.68,
      "observations": 15,
      "last_updated": "2026-03-20T16:00:00Z"
    },
    "autonomy_preference": {
      "value": "high-auto-low-ask",
      "confidence": 0.55,
      "observations": 8,
      "last_updated": "2026-03-20T15:00:00Z"
    }
  },
  "predictions": {
    "total": 34,
    "correct": 27,
    "accuracy": 0.79
  },
  "corrections_log": [
    {
      "date": "2026-03-20",
      "what": "removed_hedging",
      "signal": "operator prefers absolute statements over hedged ones",
      "weight": 5
    }
  ]
}

Confidence Thresholds

ConfidenceAgent Behavior
< 0.3Don't act on this trait. Keep observing.
0.3 - 0.6Use as soft preference. Can be overridden easily.
0.6 - 0.8Use as default behavior. Mention if deviating.
> 0.8Use as strong default. Only deviate if explicitly asked.

Decay Function

Observations lose weight over time unless reinforced:

weight(t) = initial_weight × e^(-λt)

Where λ is the decay rate (default: 0.05/day) and t is days since observation.

Recent behavior matters more than old behavior. People change. The model should too.

Cold Start

New operator, no data. Imprint handles this gracefully:

  1. Session 1-3: Pure observation mode. Don't anticipate. Just watch and record.
  2. Session 4-10: Low-confidence predictions. Soft suggestions. Easy to override.
  3. Session 10+: Model stabilizes. Agent starts genuinely anticipating.

The agent should be transparent about this: "I'm still learning how you work. I'll get better."

Integration

Per-Session Startup

At session start, load imprint/operator-model.json and apply traits with confidence above threshold to your response style. Don't announce it — just do it.

During Session

After each meaningful interaction:

  1. Extract observation signals (decisions, corrections, engagement)
  2. Update relevant traits in the model
  3. Adjust current session behavior if confidence shifted

End of Session

Write updated model to imprint/operator-model.json. Log significant observations to imprint/observations/YYYY-MM-DD.md.

Privacy

The operator model is local. It never leaves the workspace. It contains behavioral patterns, not personal data. The operator can read, edit, or delete it at any time.

What This Is NOT

  • Not a personality test. No Myers-Briggs, no OCEAN, no categorization. The model is continuous and specific, not categorical.
  • Not a surveillance system. Tracks behavioral patterns for better assistance. Never logs raw message content, secrets, or private information. Observations store derived signals only (e.g., "prefers short responses" not the actual message).
  • Not mind reading. It's pattern matching with confidence scores. It will be wrong sometimes. That's what the correction loop is for.
  • Not a replacement for explicit instructions. If the operator says "do X," do X. Imprint handles the spaces between instructions — the things the operator doesn't say because they expect you to know.

Files

  • SKILL.md — this file
  • imprint.md — implementation guide with code examples
  • operator-model-schema.json — JSON schema for the operator model
  • example-model.json — example operator model showing all trait types

The Pitch

NemoClaw gave agents security. Imprint gives agents intelligence. Your agent doesn't just execute tasks — it learns who you are and gets better at serving you specifically. Every session, every interaction, every correction makes it sharper.

The best assistant isn't the smartest one. It's the one that knows you.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.54%
按下载量换算1,321

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills