agentsclimarketplace

Agent never stop

Skill Hommchen/agent-never-stop

Universal Autonomous Agent Loop Skill — Frontend Self-Driven Polling, Reason → Wait → Reason → Wait

Install
npx -y skills add Hommchen/agent-never-stop

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Agent Never Stop — Frontend autonomous polling loop, reasoning → wait → reasoning → wait, never stops

SKILL.md

5.5 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

Agent Never Stop

One-line trigger: Say "Start Polling" "Don't Stop" → Enter a frontend autonomous loop Core architecture: The agent layer (this session) performs its own reasoning loop without relying on any background daemon process


👑 Full Delegation

Operate autonomously without requiring approval at every step. Make decisions, execute actions, and report results according to predefined rules.

Every iteration must produce valuable output — analysis, judgment, or execution. Idle cycles are prohibited.


⛔ Fundamental Rules

  1. Do not wait for user instructions. Make decisions, execute actions, and report results according to predefined rules.
  2. Scan the full picture every iteration. Inspect relevant data sources based on the task type.
  3. Call tools directly. If an action is needed, invoke the appropriate tool without asking for permission.
  4. Produce output every iteration. Even if nothing changes, provide analysis and conclusions. Empty loops and meaningless heartbeats are prohibited.
  5. Stop and report on failure. If permission issues, tool invocation failures, or unexpected errors occur, immediately stop the loop and report the issue. Do not silently retry or attempt workarounds.
  6. Check current state first. The first step of every iteration is to retrieve the current state of the target entity to avoid making decisions based on stale memory.

I. Polling Loop Architecture (Only Method: Foreground Session Blocking Mode)

Core Pattern: Reason → Block and Wait → Reason → Block and Wait → ...

Session Layer (Agent):

  ① [Pre-check] Retrieve current state (database/API/file)
  ② Fetch latest data
  ③ Reason and analyze (condition detection, signal evaluation, decision making)
  ④ If necessary: execute actions
  ⑤ Report results to the user
  ⑥ terminal("sleep N && echo go", timeout=N+60)   ← Foreground blocking wait
  ⑦ After sleep completes → return to ①

Key Rules

  • No logic is executed inside the waiting tool. It must contain only sleep N && echo go.
  • All analysis, decision-making, and tool invocations must occur at the session layer.
  • Foreground terminal execution blocks the reasoning chain. During the block period, no reasoning, data retrieval, or responses occur. It is pure waiting.
  • Foreground terminal() timeout hard limit = 600 seconds (10 minutes), therefore a single N must not exceed 600.
  • Longer wait periods must be split into multiple cycles: reason → terminal sleep → next reasoning cycle.
  • time.sleep() inside execute_code is prohibited (300-second limit is too restrictive).
  • background=true and notify_on_complete are prohibited (they do not block the reasoning chain).

Waiting Method (Only Valid Method)

Wait DurationMethodCommand
Any duration ≤ 1800sterminal("sleep N && echo go", timeout=N+30) in foreground blocking modeOnly valid method

All waiting must be blocking. There is no "background polling" mode.

Note: The default maximum foreground timeout for terminal() is 600 seconds. It can be increased to 1800 seconds (30 minutes) via the environment variable TERMINAL_MAX_FOREGROUND_TIMEOUT=1800.

Recommended Frequencies

ScenarioRecommended IntervalDescription
High-frequency monitoring (real-time response required)30–60sState-sensitive scenarios
Medium-frequency inspection300–600s (5–10 min)Routine status checks
Low-frequency background tasks600–1800s (10–30 min)Overnight or long-duration tasks

II. Data Acquisition

Customize according to task requirements. Example data source patterns:

MethodTool / Function
HTTP APIweb_extract(urls=[...])
Searchweb_search(query)
DatabaseQuery inside execute_code
File Readingread_file(path)
MCP Servermcp_xxx_*()
Browserbrowser_navigate(url)browser_snapshot()

Define the specific data sources when the task starts.


III. Decision-Making and Execution

Decision logic is defined when the task is initialized. Generic structure:

For each iteration:

  ① Information retrieval or data collection
  ② Condition evaluation (rules / thresholds / signals / keywords)
  ③ If a signal exists → execute action
  ④ If no signal exists → record status
  ⑤ Report → wait → next iteration

IV. Notes

  1. Hot rule updates. After task rules are modified, the next reasoning iteration automatically uses the updated rules without requiring a restart.

What ships with it: 2 files

10.4 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,984. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.