Autonomous Loops logo

Autonomous Loops

Community
brucesongs
autonomous-loops

Performing repetitive enumeration across many targets - Running batch vulnerability scans on multiple hosts - Monitoring for changes in target environment - Executing attack chains that require iterative steps - User says "loop", "automate", "batch", "repeat.

Overview

Publisherbrucesongs
Repositorykali-claw
Skill nameautonomous-loops
Stars
70
Forks
18
Bundled files
17
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 17 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by brucesongs on GitHub. Read the source before you install it.

Installation

Install the Autonomous Loops AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/brucesongs/kali-claw.git /tmp/kali-claw
mkdir -p .claude/skills
cp -r /tmp/kali-claw/skills/autonomous-loops .claude/skills/autonomous-loops
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Autonomous Loops in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Autonomous Loops on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Autonomous Loops is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Autonomous Loops

Supplementary Files:

  • payloads.md — Scope Lock templates, rate limit configurations, loop command templates, and error handling response templates
  • test-cases.md — Structured test cases for sequential pipeline, watch loop, batch processing, learning cycle, scope violation, and rate limit backoff
  • guides/safe-autonomous-pentest.md — Deep-dive guide on autonomous vs manual decision making, scope lock construction, loop composition, and monitoring

Summary

Autonomous Loops skill domain covering infrastructure operations.

Domain: infrastructure

Use Cases

  1. Sequential Pipeline — Chain multiple security tools in order (recon → scan → exploit) with automatic phase transitions
  2. Watch Loop — Monitor a target for changes (new ports, updated services) over extended periods
  3. Batch Processing — Run the same test against multiple targets with rate limiting and error recovery
  4. Learning Cycle — Execute a skill, capture results, extract patterns, and update knowledge base automatically
  5. Scope-Locked Automation — Run autonomous loops with hard boundaries that prevent actions outside authorized scope

Activation

  • Performing repetitive enumeration across many targets
  • Running batch vulnerability scans on multiple hosts
  • Monitoring for changes in target environment
  • Executing attack chains that require iterative steps
  • User says "loop", "automate", "batch", "repeat", "iterate"

Core Principle

Autonomous does not mean uncontrolled. Every loop must have:

  1. A defined scope (what it can and cannot touch)
  2. A termination condition (when it stops)
  3. Rate limiting (how fast it runs)
  4. Evidence logging (what it did)
  5. Error handling (what happens when things go wrong)

Four Loop Patterns

Pattern 1: Sequential Pipeline

Execute a sequence of steps across multiple targets, one at a time.

FOR EACH target IN target_list:
    IF scope_check(target) == ALLOWED:
        result = execute_step(target)
        log_evidence(target, result)
        IF result.status == FAIL:
            handle_error(target, result)
            CONTINUE or BREAK based on severity
    ELSE:
        log_skipped(target, "Out of scope")

Use when: Enumerating ports across a subnet, testing a specific vulnerability across multiple hosts.

Safety rules:

  • Process targets sequentially (no parallel burst)
  • Log every target attempted and result
  • Stop on critical error (target down, IDS triggered)
  • Maximum 100 targets per pipeline run

Pattern 2: Watch Loop

Monitor a target for changes or conditions, then act when triggered.

WHILE condition_not_met AND iterations < max_iterations:
    current_state = observe(target)
    log_observation(current_state)
    IF trigger_condition(current_state):
        result = execute_response(target, current_state)
        log_evidence("trigger", result)
        IF one_shot: BREAK
    WAIT(polling_interval)

Use when: Waiting for a service to come online, monitoring for new open ports, watching log files for specific events.

Safety rules:

  • Polling interval minimum: 5 seconds
  • Maximum iterations: 1000
  • Log every observation cycle
  • Alert when approaching iteration limit

Pattern 3: Batch Processing

Apply the same operation to a batch of targets in parallel (with concurrency limit).

CONCURRENCY = 5  # Maximum simultaneous operations
results = []

FOR EACH batch IN split_into_batches(target_list, CONCURRENCY):
    batch_results = PARALLEL execute_step(batch)
    FOR EACH result IN batch_results:
        log_evidence(result.target, result)
        results.append(result)
    WAIT(rate_limit_delay)  # Pause between batches

Use when: Running nmap scans across many hosts, batch DNS lookups, mass HTTP header checks.

Safety rules:

  • Maximum concurrency: 10
  • Rate limit delay between batches: 2 seconds minimum
  • Log all results including failures
  • Respect target-specific rate limits if known

Pattern 4: Learning Cycle

Iteratively refine an approach based on results from previous iterations.

approach = initial_approach
FOR iteration IN range(max_iterations):
    result = execute(approach)
    analysis = analyze_result(result)
    log_evidence(iteration, approach, result, analysis)
    IF analysis.success:
        log_evidence("success", approach)
        BREAK
    approach = refine(approach, analysis)
    IF approach.confidence < min_confidence:
        log_evidence("abort", "Confidence below threshold")
        BREAK

Use when: Brute-forcing with adaptive wordlists, SQL injection payload refinement, fuzzing with feedback.

Safety rules:

  • Maximum iterations: 50
  • Log every attempt and result
  • Confidence threshold: abort if below 10% after 10 attempts
  • Never widen scope during refinement

Safety Framework

Scope Lock

Before ANY loop starts, define and lock the scope:

markdown
## Scope Lock: [Operation Name]
- **Allowed targets:** [CIDR range / hostname list / URL list]
- **Allowed operations:** [Specific commands/techniques]
- **Forbidden operations:** [What must NOT be done]
- **Time limit:** [Maximum wall-clock time]
- **Iteration limit:** [Maximum number of iterations]
- **Abort conditions:** [Specific triggers that stop the loop]

Once defined, the scope cannot be widened during execution.

Rate Limiting

Operation TypeMinimum IntervalMax Concurrency
Network scan (nmap)2s between hosts5
Web request (HTTP)100ms between requests3
DNS lookup50ms between queries10
Brute force attempt500ms between attempts1
Exploit attempt5s between attempts1

Evidence Logging

Every loop iteration must log:

markdown
## Loop Log Entry
- **Timestamp:** [ISO 8601]
- **Iteration:** [N / max]
- **Target:** [host/port/URL]
- **Action:** [command or technique]
- **Result:** [success/fail/error/timeout]
- **Output:** [truncated to 500 chars, full output saved to file]
- **State change:** [what changed on target, if any]

Error Handling

Error TypeResponse
Target unreachableLog and skip, continue to next target
Rate limit detectedIncrease delay by 2x, retry once
Authentication failureLog and skip (do NOT retry with variations)
Unexpected service responseLog details, flag for manual review, continue
IDS/IPS detectedSTOP immediately, log incident
Target crash/unexpected downtimeSTOP immediately, log incident
Scope violation attemptSTOP immediately, log incident

Notification Rules

Notify the operator when:

  • Loop starts (with scope summary)
  • Every 25 iterations or 5 minutes (whichever comes first)
  • Any error condition occurs
  • Loop completes or aborts

Integration with Other Skills

SkillLoop PatternApplication
vulnerability-assessmentBatch ProcessingScan multiple hosts for vulnerabilities
password-attackLearning CycleAdaptive brute force with feedback
web-sqliLearning CycleIterative payload refinement
network-pentestSequential PipelineMulti-host enumeration
osintBatch ProcessingMass DNS/WHOIS lookups
terminal-opsAll patternsEvidence logging protocol
verification-loopSequential PipelineVerify findings across multiple hosts
safety-guardAll patternsPre-execution safety checks

Detection Methods

Autonomous Loop Indicators

  • Sustained agent activity: Same agent token executing >100 sequential operations; >24h continuous runtime.
  • Tool call cadence: Constant-interval tool calls (e.g., every 30s exactly); typical of cron-driven loops.
  • State persistence: Agent re-loading state from previous session; checkpoint file access patterns.
  • Memory growth: Agent process accumulating >2GB RAM; typical of long-running loops without state cleanup.
  • Self-modifying prompts: Agent modifying its own system prompt or configuration mid-run.

SIEM Detection Rules

  • Splunk SPL: index=llm gateway.user="agent-*" | stats range(_time) as duration by session_id | where duration > 86400
  • Sigma rule: sigma/rules/ai/long_running_agent.yml
  • LangSmith trace analysis: Detect agents with >1000 turns in single session.

Defense Evasion Techniques

Loop Stealth

  • Off-hours operation: Run loops during low-traffic hours; blends with maintenance tasks.
  • Distributed sessions: Cycle through multiple agent sessions to avoid per-session limits.
  • Memory cleanup between cycles: Clear conversation history to reduce token usage anomaly.
  • Slow pacing: Pace tool calls at irregular intervals to avoid cadence detection.
  • State externalization: Store state in external KV store rather than session memory.

Self-Modification Stealth

  • Gradual config changes: Modify system prompt in small increments over multiple sessions.
  • Use environment variables: Modify env vars rather than prompts (less audited).
  • Persistence via legitimate mechanisms: Use MCP server registration (looks legitimate).

Anti-Patterns

  • Infinite loops — Every loop MUST have a termination condition
  • Scope creep — Never add targets during execution
  • Silent failures — Every error must be logged and reported
  • Unbounded parallelism — Always set and respect concurrency limits
  • Skipping evidence — Even failed attempts must be logged
  • Ignoring rate limits — Target stability is more important than speed

Orchestration

ECC Loop Pattern

  • Pattern: Meta-Skill (defines loop patterns consumed by all other skills)
  • Rationale: Autonomous loops is not an end-user skill but a meta-skill that provides loop constructs for all other security skills — every skill that needs iterative or batch operations consumes one of the four loop patterns
  • Integration: All security skills that need repetitive operations consume loop patterns from this skill. Each skill selects the appropriate pattern based on its workflow needs.

Cross-Skill Pipeline

autonomous-loops (provides loop patterns)
    ├── Sequential Pipeline → network-pentest, terminal-ops, verification-loop
    ├── Watch Loop → security-bounty-hunter, deep-research
    ├── Batch Processing → repo-scan, osint, vulnerability-assessment
    └── Learning Cycle → search-first, continuous-learning, password-attack

Quality Gate

  • Pre-condition: Scope Lock defined with allowed targets, operations, and abort conditions
  • Post-condition: Evidence chain complete for every iteration, all results logged
  • Verification: Scope not widened during execution, iteration/iteration limits respected, rate limits maintained

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Autonomous Loops AI skill do?

Performing repetitive enumeration across many targets - Running batch vulnerability scans on multiple hosts - Monitoring for changes in target environment - Executing attack chains that require iterative steps - User says "loop", "automate", "batch", "repeat.

Why use Autonomous Loops on TypingMind?

Because you install it once and use it with any model. Autonomous Loops is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Autonomous Loops in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/brucesongs/kali-claw/tree/main/skills/autonomous-loops. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Autonomous Loops?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Autonomous Loops?

As many as you like. As long as a model supports skills, you can use Autonomous Loops with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Autonomous Loops AI skill free?

Yes. It is published on GitHub by brucesongs under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇