← 返回 Skills 市场
daijo-bu

Daily Questions

作者 daijo-bu · GitHub ↗ · v1.1.0
cross-platform ✓ 安全检测通过
1003
总下载
1
收藏
2
当前安装
2
版本数
在 OpenClaw 中安装
/install daily-questions
功能描述
Daily self-improving questionnaire that learns about the user and refines agent behavior. Set up as a cron job to ask questions one at a time with multiple c...
使用说明 (SKILL.md)

Daily Questions

A daily routine that asks the user questions to continuously build understanding and improve agent behavior. Questions are presented one at a time with multiple choice buttons on Telegram for quick tapping.

Setup

Create a cron job with a prompt like:

Time for your daily questions. Read the daily-questions SKILL.md, then follow the workflow exactly. Read USER.md and SOUL.md, identify gaps. Ask {N} user questions then {N} agent questions, one at a time with multiple choice buttons. Update the files after each round.

Configurable parameters:

  • Schedule: Default 21:00 daily (adjust to user's preferred wind-down time)
  • Channel: Telegram (buttons require Telegram inline keyboard support)
  • Questions per round: Default 3 (keep it light)

Workflow

  1. Read USER.md and SOUL.md fully
  2. Identify gaps — what topics, preferences, or behaviors aren't covered yet?
  3. Round 1 (User questions): Ask questions about the user, one at a time (see Question Flow below). After all questions answered, update USER.md — weave answers into existing sections or create new ones. Keep USER.md organized, not a raw Q&A dump.
  4. Round 2 (Agent questions): Ask questions about agent behavior/communication, same one-at-a-time flow. After all answered, update SOUL.md the same way.

Question Flow (One at a Time)

For each question:

  1. Generate the question and 3 plausible multiple choice answers (A, B, C) tailored to the question. Make the options genuinely different and useful — not throwaway filler.

  2. Send the question as a message with 4 inline buttons via the message tool:

    • Button A: First option
    • Button B: Second option
    • Button C: Third option
    • ✏️ Type my own: For custom/granular answers
  3. Send using the message tool with buttons. Use unique callback IDs per question to avoid conflicts when users tap old buttons:

{
  "action": "send",
  "channel": "telegram",
  "to": "\x3Cuser_telegram_id>",
  "message": "**Round 1 — Question 1/3**\
\
\x3Cquestion text here>\
\
A) \x3Coption A>\
B) \x3Coption B>\
C) \x3Coption C>\
\
Tap a button or type your own answer:",
  "buttons": [
    [
      { "text": "A", "callback_data": "dq_r1q1_a" },
      { "text": "B", "callback_data": "dq_r1q1_b" },
      { "text": "C", "callback_data": "dq_r1q1_c" }
    ],
    [
      { "text": "✏️ Type my own", "callback_data": "dq_r1q1_custom" }
    ]
  ]
}

The format is dq_r{round}q{question}_{choice} — e.g., dq_r2q3_b = Round 2, Question 3, option B.

  1. Wait for the response. The user will either:

    • Tap a button → you receive callback_data: dq_r1q1_a (or similar)
    • Type a free-text answer directly (treat as custom)
  2. If the callback doesn't match the current question (e.g., user tapped an old button), ignore it and keep waiting for the correct response.

  3. If dq_rXqX_custom: Reply asking them to type their answer, then wait for the next message.

  4. Record the answer, then move to the next question.

  5. After all questions in the round are answered, update the relevant file (USER.md or SOUL.md).

Question Quality Guidelines

  • Vary topics — rotate through categories (see references/example-questions.md)
  • Go deeper — if USER.md says "likes cooking," ask what cuisine, skill level, favorite dish
  • Stay casual — conversational tone, not an interview
  • No repeats — never ask about something already well-documented
  • Mix fun and practical — alternate between lighthearted and useful questions
  • Good multiple choice options — make them realistic and distinct. Draw from common preferences, not absurd extremes. The options should feel like plausible answers a real person would give.

Important Notes

  • One question at a time — never batch questions into a single message
  • Always use inline buttons on Telegram — this is the primary interaction method
  • Include the question text AND options in the message body so the user can read everything before tapping
  • Label rounds and progress (e.g., "Round 1 — Question 2/3") so the user knows where they are
  • After sending buttons via the message tool, respond with NO_REPLY to avoid sending a duplicate plain-text message
安全使用建议
This skill appears to do what it says: ask daily questions over Telegram and update USER.md and SOUL.md. Before installing, verify (1) USER.md and SOUL.md do not contain secrets you don't want the agent to read/write, (2) how your platform stores and authorizes the Telegram channel/user ID and callback handling (the skill relies on the platform message tool), and (3) that you want a cron job or scheduled invocation to run these prompts. If you plan to run it autonomously, review the agent's messaging permissions and where responses are persisted so personal data isn't exposed unintentionally.
功能分析
Type: OpenClaw Skill Name: daily-questions Version: 1.1.0 The skill bundle is designed for a daily self-improvement questionnaire, gathering user preferences and agent behavior feedback to update `USER.md` and `SOUL.md`. The `SKILL.md` instructions are clear, well-defined, and strictly adhere to this stated purpose, utilizing the `message` tool for interactive questions. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts to subvert the agent's intended function. All actions described are consistent with a benign, self-improving agent routine.
能力评估
Purpose & Capability
Name and description match the instructions: the SKILL.md defines a daily questionnaire via Telegram, reads USER.md and SOUL.md to identify gaps, asks questions, and updates those files. There are no unrelated binaries, env vars, or installs requested.
Instruction Scope
Instructions explicitly tell the agent to read and update USER.md and SOUL.md and to send messages via the platform 'message' tool on the Telegram channel. This is appropriate for a personalization routine, but it means the skill will access whatever personal data is stored in those files and will send/receive messages on the user's Telegram channel. The skill does not instruct the agent to read unrelated system files or exfiltrate data to external endpoints beyond Telegram.
Install Mechanism
Instruction-only skill with no install spec and no code files. There is nothing written to disk by the skill itself and no external download URLs, so install risk is minimal.
Credentials
The skill requests no environment variables or credentials, which is coherent. However, it reads and writes USER.md and SOUL.md (user-owned documents) — these may contain sensitive personal data. The skill does not require tokens, but it relies on the platform's Telegram integration; ensure the platform's channel/token handling is appropriate.
Persistence & Privilege
always is false and the skill does not request persistent agent-wide privileges or modification of other skills. It instructs the user to create a cron job externally, which is a user-driven setup step rather than an automatic persistence mechanism.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install daily-questions
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /daily-questions 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Questions now presented one at a time with Telegram inline buttons (3 multiple choice + type your own). Unique callback IDs per question to prevent stale button conflicts.
v1.0.0
Initial release of daily-questions skill. - Automates daily questionnaires to learn about the user and refine agent behavior. - Two sequential question rounds: one about the user (updates USER.md), one about agent conduct (updates SOUL.md). - Designed for cron job scheduling with configurable time, channel, and questions per round. - Emphasizes conversation quality: varied, casual, non-repetitive, and well-organized documentation updates.
元数据
Slug daily-questions
版本 1.1.0
许可证
累计安装 3
当前安装数 2
历史版本数 2
常见问题

Daily Questions 是什么?

Daily self-improving questionnaire that learns about the user and refines agent behavior. Set up as a cron job to ask questions one at a time with multiple c... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1003 次。

如何安装 Daily Questions?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install daily-questions」即可一键安装,无需额外配置。

Daily Questions 是免费的吗?

是的,Daily Questions 完全免费(开源免费),可自由下载、安装和使用。

Daily Questions 支持哪些平台?

Daily Questions 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Daily Questions?

由 daijo-bu(@daijo-bu)开发并维护,当前版本 v1.1.0。

💬 留言讨论