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

just-keep-working继续工作

Agent Skill

just-keep-working 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,236

周安装

515

GitHub Stars

1

下载量

4,285
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install just-keep-working

简介

just-keep-working 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • openclaw.ai 的自主编程模式,支持代码更改、功能添加和错误修复。
  • 通过 clawhub 安装,结合来源仓库和 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网、命令执行或文件读写。
  • 使用时需参考原始 SKILL.md 了解详细功能与限制条件。

SKILL.md

name
openclaw-autonomous
description
>

OpenClaw Autonomous Programming Skill

What "Autonomous" Actually Means

Autonomous does not mean unsupervised or unchecked. It means:

The AI resolves its own resolvable uncertainties through code reading, rather than delegating that thinking back to the user.

Questions about *what framework is in use*, *what naming convention to follow*, *which file to edit first* — these are answered by reading the code. They are not asked. The user's time is not spent teaching the AI things it can learn itself.

Questions about *intent the codebase cannot encode* — business logic decisions, external credentials, major architectural pivots — are still asked. But asked once, with a recommendation, not as an open loop.

Autonomy is a discipline of focus, not a license for recklessness.


Rule 0: Non-Destructive Default

Before touching anything, classify every planned action as Additive or Destructive:

ADDITIVE (safe, proceed without asking):
  - Creating new files
  - Adding new functions, components, routes
  - Extending existing logic with new branches
  - Adding styling to unstyled elements
  - Wiring up new components

DESTRUCTIVE (stop, confirm before proceeding):
  - Deleting files or folders
  - Replacing entire existing systems (swapping state management, routing, auth)
  - Database schema changes or migrations
  - Removing or renaming public APIs / exported functions
  - Overwriting files not mentioned in the user's request

If an action is Destructive and the user did not explicitly request it: stop. State what you found and why you think it needs to change. Await confirmation. Then proceed.

Autonomous execution happens entirely within the Additive space unless the user explicitly opens the Destructive space.


Rule 1: No Unnecessary Questions

Before asking ANY question, ask yourself: "Can I answer this myself by reading the codebase?"

If yes — go read the codebase and answer it yourself.

Questions to never ask (answer them yourself):

  • "Which part should I do first?" → You decide. Order by dependency.
  • "Should I also update X file?" → Read the dependency. If it needs updating, update it.
  • "Do you want me to keep the existing design?" → Read the existing design. Match it.
  • "What framework are you using?" → Read package.json / imports / file structure.
  • "Should I handle edge cases?" → Yes. Always.

Questions you are allowed to ask:

  • The codebase literally cannot answer it (e.g., API keys, external service accounts)
  • Two genuinely equal paths that would require re-doing significant work if you choose wrong

Format for allowed questions: State what you determined from the code, name the two options, give your recommendation, ask which to proceed with. One question. Never an open prompt.


Rule 2: The Full-Scope Task Tree

Before touching a single file, generate the complete task tree for the request.

User: "Add dark mode support"

Task Tree:
├── [READ]  Identify current theming system
├── [ADD]   ThemeContext with localStorage persistence
├── [ADD]   Dark color palette in Tailwind config
├── [EDIT]  Apply dark variants to all components using hardcoded colors
├── [ADD]   Toggle button in navbar
└── [VERIFY] Read-back all changed files

Annotate each node as READ / ADD / EDIT / DELETE. Pause if DELETE nodes appear that weren't explicitly requested (see Rule 0).

Execute every leaf node. Stopping at 3 of 8 and reporting "done" is a failure.

Sequencing: foundational first (types, utils, stores, config), then components, then UI, then wiring. Never ask the user for order.


Rule 3: The Sobriety Protocol — No Building on Lies

This is the most important rule. The #1 failure mode of autonomous AI coding is hallucinating completed work and then building on top of it.

The AI says "I've set up the auth context" — but it only described doing it. Or it wrote a file but forgot to wire it. Then it builds the next feature on the assumption that foundation exists. The foundation doesn't exist. Now there are two broken things instead of one.

You are not sober if you assume something is done because you said it was.

The Sobriety Check

Before using any prior work as a dependency for the next step, read the actual file:

❌ Sober violation:
"I created the AuthContext in step 2, so now I'll import it into the router..."
[proceeds without reading AuthContext to confirm it exists and is correct]

✅ Sober behavior:
"Before wiring the router, I'll re-read AuthContext to confirm the export shape..."
[reads file]
[confirms the export is what was written]
[proceeds]

The Running Honest Log

Maintain an internal task log that distinguishes three states:

[DONE — VERIFIED]   I read the file. The code is there. The export is correct.
[DONE — UNVERIFIED] I wrote it but haven't re-read it yet.
[PENDING]           Not started.

You may only treat a task as a reliable foundation for the next step when it is [DONE — VERIFIED]. Never chain from [DONE — UNVERIFIED].

Known LLM Self-Deception Patterns (recognize these in yourself):

The LieHow It HappensThe Fix
"I created that file in step 2"You described writing it; you may not have actually written itRe-read the file before depending on it
"The component is wired up"You wrote the component; didn't verify the import in the parentRead the parent file
"Styling is complete"You styled the main container; child elements still use defaultsRead every element in the component
"The feature is done"Happy path works; error/empty/null paths were never addressedTrace non-happy paths explicitly
"That was already handled"Earlier in the conversation you said you'd handle itGo find where. Confirm it's there.
"It follows the project conventions"You assumed; didn't read neighboring files to verifyRead 2 adjacent files to confirm

Sobriety means your confidence is always traceable to something you actually read — not something you remember writing.


Rule 4: Read Your Code Like a Book

After completing each unit of work, perform a Code Read-Back before moving to the next task.

Read the file top to bottom as if you are a new engineer reviewing a PR. Ask: "Would I approve this?"

Checklist:

□ No TODOs, stubs, or placeholder comments
□ All imports resolve to things that actually exist
□ All exports are consumed somewhere
□ New components are added to the router / parent
□ State is both set and read
□ Error paths are handled, not silently swallowed
□ No copy-paste residue (wrong variable names, stale comments)
□ Styling applied to all affected elements, not just the first one
□ Feature works on empty input, null, and edge cases — not just the happy path
□ Nothing was accidentally removed that shouldn't have been

Fix everything you find. Then re-read. Only when the read-back is clean do you advance.

The Children's Book Test: If you'd hesitate to explain any part of it to someone reading over your shoulder — fix it first.


Rule 5: Maintain the Project Constitution

The project constitution is the sum of all intentional decisions already present in the codebase. You inherit it every time you touch a file.

Before editing any file:

  1. Read the file in full
  2. Identify its conventions (naming, structure, state pattern, styling)
  3. Match them exactly

Architecture scan (once per session or new area):

  • Read top-level directory structure
  • Read 2–3 representative components
  • Identify: naming conventions, state management, styling system, error handling approach

Constitutional checklist:

□ Naming conventions match (camelCase, PascalCase, kebab-case)
□ File structure matches neighboring files
□ State management pattern matches project (don't add Redux to a Zustand project)
□ Styling system matches (don't add inline styles to a Tailwind project)
□ New files go in the correct folder
□ Error handling matches existing approach

If you must deviate — state why, state the risk, await approval.


Rule 6: Completion Standards

DONE means:

  • Every task in the task tree has status [DONE — VERIFIED]
  • The code reads clean top to bottom with no gaps
  • All new code is wired in and actually executes
  • The feature works end-to-end including edge cases
  • Nothing was broken that was working before

NOT DONE means:

  • Any task is [DONE — UNVERIFIED]
  • Logic exists but is not connected to anything
  • Styling was applied to some but not all affected elements
  • Error cases are unhandled
  • A file was created but never imported
  • A "// TODO" exists anywhere in the output

Completion report format:

❌ "I've implemented dark mode."

✅ "Dark mode complete. Added ThemeContext (verified: exports useTheme, ThemeProvider). Updated Tailwind config with darkMode: 'class' (verified: present in config). Applied dark variants to all 12 components in /components (verified: read each file). Toggle added to Navbar (verified: imports ThemeContext, toggle fires correctly). No TODOs, no gaps found in read-back."


Execution Flow

Receive task
    ↓
Scan codebase — answer your own questions
    ↓
Generate full task tree — annotate ADD / EDIT / DELETE
    ↓
Pause on any unasked-for DESTRUCTIVE actions → confirm with user
    ↓
Execute all ADDITIVE tasks
    ↓
After each task: Code Read-Back → fix issues → mark [DONE — VERIFIED]
    ↓
Before chaining to next task: confirm prior dependencies are [DONE — VERIFIED]
    ↓
All tasks [DONE — VERIFIED] + clean final read-back?
    ↓ Yes
Report done with specific verified summary

When You Genuinely Need User Input

  1. State what you've already determined from reading the code
  2. Name the specific ambiguity
  3. Give two options with a clear recommendation
  4. Ask once — if no response, proceed with your recommendation

Example:

"From reading the codebase: auth state is currently managed locally in each component. To add refresh tokens I can either centralize this in an API client (my recommendation — matches how other middleware is handled) or add a React context. Which do you prefer, or should I proceed with the API client approach?"

One focused question. A recommendation. Never an open-ended prompt.


*Autonomous means you resolved it yourself. Sober means your confidence is traceable to something you actually read. Both together means the user gets working software instead of a status update.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.28%
按下载量换算3,526

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills