freshcrate
Skin:/
Home > Uncategorized > AgentSmith-HUB

AgentSmith-HUB

Enterprise Security Data Pipeline Platform (SDPP) โ€” Real-Time Threat Detection + Deeply Integrated LLM Agents

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Enterprise Security Data Pipeline Platform (SDPP) โ€” Real-Time Threat Detection + Deeply Integrated LLM Agents

README

AgentSmith-HUB

GitHub release License

A high-performance security data pipeline with a real-time rules engine and deeply integrated LLM agents โ€” built for modern SOC and detection engineering teams.

Process, enrich, detect, and respond at scale โ€” with simple XML-based rules, CEP, rich plugins, and AI-powered analysis wired directly into the stream.

Dashboard


Why AgentSmith-HUB?

If you work in security operations, you probably deal with massive volumes of raw logs and alerts every day. You need to normalize, enrich, correlate, and route them โ€” and ideally detect threats in real time, not in batch jobs. AgentSmith-HUB is built to handle all of this in a single, opinionated platform:

  • High-signal detections, not dashboards โ€” Design real-time detections and data transformations with simple, readable XML rules instead of adโ€‘hoc scripts
  • Blazing fast at scale โ€” 3.90M messages/sec on just 2 vCPUs (benchmark); built to sit directly in front of your SIEM / lake
  • All-in-one pipeline โ€” Input, normalization, enrichment, correlation, and output in one flow; no more glue scripts between Kafka, ES, ClickHouse, and โ€œrule enginesโ€
  • First-class CEP โ€” Detect ordered event sequences, absence patterns, and multi-source correlations over time with <sequence>, <threshold>, <iterator>, and <checklist>
  • LLM agents in the stream โ€” Drop LLM-powered agents into the same pipeline for alert triage, enrichment, rule authoring, and auto-whitelisting
  • Comment-to-memory learning loop โ€” Convert reviewer comments from Agent Tools Logs into durable memory_notes, auto-commit updates, and continuously improve agent behavior
  • Skills system โ€” Attach knowledge bases and operational tools to agents via Skills, with progressive disclosure so prompts stay small and fast
  • Rich plugin ecosystem โ€” Threat intel (VirusTotal, ThreatBook, Shodan), GeoIP, encoding, regex, time/window helpers, LLM calls, and more
  • Production features out of the box โ€” Cluster mode, health checks, daily stats, sample data, Push Changes / review workflow, and a modern Web UI for rule and project orchestration

Who is this for?

  • SOC / CERT / CSIRT teams that want an opinionated place to run detections, triage alerts, and reduce false positives without building their own engine from scratch.
  • Detection engineers / threat hunters who care about CEP, thresholds, and precise control over when an alert fires (and when it must not).
  • Security platform / data teams who already own Kafka / ES / ClickHouse and want a thin, fast, open platform to orchestrate security data flows and LLM-powered analysis.

How It Works

AgentSmith-HUB uses a straightforward pipeline model:

INPUT (Kafka / SLS / ...) โ†’ RULESET / AGENT โ†’ RULESET / AGENT โ†’ OUTPUT (Kafka / ES / ClickHouse / SLS / ...)

Rulesets and agents can be freely chained within a Project, giving you full control over data flow and allowing you to mix โ€œhardโ€ rules with โ€œsoftโ€ LLM judgement in the same stream:

ExampleProject

Core Components at a Glance

  • INPUT: Connects to streaming sources like Kafka, Aliyun SLS, and cloud-managed Kafka variants; supports Grok parsing and JSON so you normalize once and reuse everywhere.
  • RULESET: XML-based real-time rules engine with checks, checklists, thresholds (count / SUM / CLASSIFY), CEP sequences, iterators, and data append/modify/del โ€” all executed strictly in the order you write them.
  • AGENT: LLM-powered node that runs in the same pipeline as rulesets; for each event it can call an LLM (with tools and skills) to score, enrich, or auto-generate rules/whitelists, then forward the enriched event downstream.
  • OUTPUT: Sends processed data to Kafka, Elasticsearch (v7/v8/v9), ClickHouse, or simple print, with batching, time-based flush, TLS/auth, and idempotent Kafka producers for safe delivery.
  • SKILL: Reusable capability module for agents โ€” knowledge skills provide onโ€‘demand reference content, builtin skills expose Go-implemented tools like hub_ruleset_editor for ruleset CRUD.
  • PLUGIN: Extensible function system powering checks, enrichment, and actions: GeoIP, URL parsing, encoding, time window helpers, threat intelligence lookups, single-shot LLM calls, and more โ€” all composable directly in rules.

Web UI & API Highlights

  • Visual rule and project editing: Rich browser UI for editing rulesets with syntax help, validation, and GIF-level feedback; drag-style project orchestration to define INPUT โ†’ RULESET / AGENT โ†’ OUTPUT flows.
  • One-click testing everywhere: Built-in test runners for Output, Ruleset, Plugin, Agent, and Project components (including sample data capture), so you can validate changes before they hit real outputs.
  • Operations, errors, and cluster view: Dedicated views for error logs, operations history (project start/stop/restart, config changes, agent tool calls), and basic cluster status so you can see what is running where.
  • Safe change management: All edits go through temporary configs, diff & review, and then Push Changes to apply โ€” the platform automatically figures out affected projects and restarts them safely.
  • HTTP API for automation: JSON APIs mirror the UI capabilities (component CRUD, project lifecycle, testing), so you can integrate AgentSmith-HUB into CI/CD, internal portals, or automation scripts.

Rules Engine in 60 Seconds

At the heart of AgentSmith-HUB is a streaming rules engine designed for security detections:

  • Checks & checklists: Match on strings, numbers, regex, and plugins; combine conditions with AND/OR/NOT using logical expressions.
  • Thresholds & windows: Detect frequency, sums, or distinct counts over sliding time windows (e.g. brute-force, spray, exfil).
  • CEP sequences: Express ordered multi-event patterns and absence (e.g. login -> !mfa, recon -> exploit -> exfil) with <sequence>.
  • Data shaping: Enrich, modify, or delete fields in place, and call plugins to pull in external context or compute derived fields.

A minimal example that enriches with threat intel and then detects on the enriched field:

<rule id="enrich_and_detect" name="Enrich with TI then alert">
    <append type="PLUGIN" field="threat_info">threatbook(src_ip)</append>
    <check type="EQU" field="threat_info.severity">high</check>
    <append field="alert_level">critical</append>
</rule>

For the full syntax (all operations, modes, and best practices), see the Complete Guide.

LLM Agents & Skills

Agents are LLM-powered components that sit in the pipeline alongside rulesets. They process events independently, call an LLM with tool-use support, and forward enriched results downstream.

# Agent: AI-powered alert triage
model: gpt-4o-mini
system_prompt: |
  For each alert, add llm_confidence (0-1) and llm_analysis fields.
skills:
  - hub_ruleset_expert    # Knowledge skill: rules engine reference
tools: all                # Expose all plugins as LLM tools
max_rounds: 3
timeout: 30s

# Optional long-term memory (recommended as YAML sequence)
memory_notes:
  - Keep output JSON compact and stable.
  - Treat routine CI scanner traffic as lower priority unless other signals exist.

Skills provide modular capabilities to agents:

  • Knowledge skills โ€” Reference docs loaded on-demand (progressive disclosure)
  • Builtin skills โ€” Go-implemented tools (e.g., hub_ruleset_editor for reading/writing rulesets)

Quick production tips:

  • Prefer tools: [] by default and allowlist only needed plugin tools.
  • Use tools: all only for broad assistant agents (rule-authoring / deep triage).
  • In cluster mode, memory write/generate actions must go to the leader node.

Use agents in your project like any other component:

content: |
  INPUT.kafka_alerts -> AGENT.alert_reviewer
  AGENT.alert_reviewer -> OUTPUT.enriched_alerts

For full agent details (fields like reasoning_mode, reasoning_budget_tokens, memory_notes, and memory workflow in UI/API), see the Complete Guide.

Built-in Detection Rulesets

AgentSmith-HUB ships with production-ready detection rulesets that you can deploy immediately โ€” no rule-writing required. All rules are mapped to MITRE ATT&CK for seamless integration with your security workflows.

Built-in K8s Ruleset Files

AgentSmith-HUB includes Kubernetes security rulesets out of the box. You can use them directly without writing custom XML first:

  • config/ruleset/k8s_security/k8s_audit_baseline.xml
  • config/ruleset/k8s_security/k8s_audit_intrusion.xml

Recommended onboarding flow:

  1. Import both built-in rulesets.
  2. Route Kubernetes audit logs to these rulesets in your Project.
  3. Verify detections in test mode with real sample events.
  4. Tune thresholds (if needed) for your cluster's normal behavior.

Sysmon Endpoint Security (Windows)

Two Sysmon rulesets are provided for medium/high-confidence endpoint detection use cases:

  • config/ruleset/sysmon_security/sysmon_baseline.xml
  • config/ruleset/sysmon_security/sysmon_intrusion.xml
  • config/ruleset/sysmon_security/sysmon_exclude.xml (strict allowlist template)

Recommended onboarding flow for Sysmon:

  1. Ensure your input normalizes core Sysmon fields used by rulesets.
  2. Import sysmon_baseline.xml first and validate behavior in test mode.
  3. Import sysmon_intrusion.xml and tune based on your endpoint baseline.
  4. Add environment-specific allowlists with a separate EXCLUDE ruleset if needed.

More built-in rulesets for additional data sources are on the roadmap. Contributions are welcome!

Features at a Glance

Rule Editing

RuleEdit

Rule Testing

RuleTest

Project Orchestration

ProjectEdit

Plugin Testing

Plugintest

Input Connection Check

InputEditConnectCheck

Search

Search

Error Logs & Operations History

ErrlogOperations

Comment-to-memory learning loop

Comment-to-memory

Deployment

  1. Download and extract the release archive to /opt/agentsmith-hub
  2. Copy the config folder: cp -r /opt/agentsmith-hub/config /opt/hub_config
  3. Configure Redis in /opt/hub_config/config.yaml
  4. Start the service:
    # Leader mode (default)
    ./start.sh
    
    # Follower mode (uses the same Redis as leader)
    ./start.sh --follower
    
    # See all options
    ./start.sh --help
  5. Access token is generated at /etc/hub/.token on first run
  6. Install and configure Nginx:
    sudo cp /opt/agentsmith-hub/nginx/nginx.conf /etc/nginx/
    sudo nginx -s reload
  7. Open http://your-host in your browser (port 80)

Documentation

License

AgentSmith-HUB is licensed under the Apache License 2.0 with the Commons Clause restriction.

You are free to use, modify, and deploy this software โ€” the restriction only prevents selling the software itself as a commercial product or service. Internal enterprise use is fully permitted.

Release History

VersionChangesUrgencyDate
v0.1.9-beta.20## AgentSmith-HUB Release v0.1.9-beta.20 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 10a3b6833013612642e9b8a0a3d22f67a6a19e1c See README.md in the package for detailed deployment instructions. High6/2/2026
v0.1.9-beta.18## AgentSmith-HUB Release v0.1.9-beta.18 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 1f327a2865f3305746a0caca386877105a3da376 See README.md in the package for detailed deployment instructions. High5/8/2026
v0.1.9-beta.17## AgentSmith-HUB Release v0.1.9-beta.17 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: ae93dcdaecea8d97d92f348e5d9de51ec2699d4a See README.md in the package for detailed deployment instructions. High4/28/2026
v0.1.9-beta.16## AgentSmith-HUB Release v0.1.9-beta.16 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 01a8090ff9290765fbd78dd3602c1afcebfb70a4 See README.md in the package for detailed deployment instructions. High4/27/2026
v0.1.9-beta.14## AgentSmith-HUB Release v0.1.9-beta.14 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: c156a11bb2d4943205bd0448dde55f31f607959f See README.md in the package for detailed deployment instructions. High4/22/2026
v0.1.9-beta.13## AgentSmith-HUB Release v0.1.9-beta.13 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: e1dde09c86927ec705fa2136b8be53710ddd05ea See README.md in the package for detailed deployment instructions. High4/15/2026
v0.1.9-beta.12## AgentSmith-HUB Release v0.1.9-beta.12 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 8290c99dfd84b8eb6c9ced790cf798945357b478 See README.md in the package for detailed deployment instructions. High4/15/2026
v0.1.9-beta.11## AgentSmith-HUB Release v0.1.9-beta.11 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: b9ef85f87c6e937de9d7394b90190f69110af40f See README.md in the package for detailed deployment instructions. High4/14/2026
v0.1.9-beta.10## AgentSmith-HUB Release v0.1.9-beta.10 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 1f2d6162f936fc245d36b2f5fcf152c99b82ae71 See README.md in the package for detailed deployment instructions. High4/13/2026
v0.1.9-beta.9## AgentSmith-HUB Release v0.1.9-beta.9 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: db23332ee64d9445e6bcf7008e1c5b101acad06f See README.md in the package for detailed deployment instructions. High4/11/2026
v0.1.9-beta.8## AgentSmith-HUB Release v0.1.9-beta.8 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 2b0476fec3cc798083167fa0772f03bc2bd608c3 See README.md in the package for detailed deployment instructions. Medium4/10/2026
v0.1.9-beta.7## AgentSmith-HUB Release v0.1.9-beta.7 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: c655b6287c9814973a9f4d8c8124d0d81ca0a29b See README.md in the package for detailed deployment instructions. Medium4/10/2026
v0.1.9-beta.6## AgentSmith-HUB Release v0.1.9-beta.6 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 737d48d12b026a758b8593b38e1c50932eb785ec See README.md in the package for detailed deployment instructions. High4/9/2026
v0.1.9-beta.5## AgentSmith-HUB Release v0.1.9-beta.5 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: c836219aa38d7ddc62dabf46820a8699729a7c66 See README.md in the package for detailed deployment instructions. Medium4/1/2026
v0.1.9-beta.4## AgentSmith-HUB Release v0.1.9-beta.4 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: c21a9aea0f11ef814ae9452235208f7ae8b1e1fd See README.md in the package for detailed deployment instructions. Medium3/24/2026
v0.1.9-beta.3## AgentSmith-HUB Release v0.1.9-beta.3 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 9290a76918a7d70c4d030e8ecd472a728107276f See README.md in the package for detailed deployment instructions. Medium3/23/2026
v0.1.9-beta.2## AgentSmith-HUB Release v0.1.9-beta.2 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: 31a26b252140ffb01d583fb60b79e44d56a727ab See README.md in the package for detailed deployment instructions. Medium3/23/2026
v0.1.9-beta.1## AgentSmith-HUB Release v0.1.9-beta.1 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.9 - Git Commit: e1ae1d08ddadbd532e10950617494a857b44b6d2 See README.md in the package for detailed deployment instructions. Medium3/23/2026
v0.1.8-beta.8## AgentSmith-HUB Release v0.1.8-beta.8 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: e044005efc011e18d920caafd3dc100ec684e2c2 See README.md in the package for detailed deployment instructions. Low3/20/2026
v0.1.8-beta.7## AgentSmith-HUB Release v0.1.8-beta.7 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: efce04062adc6f9bd814b02277d827fbc919f72e See README.md in the package for detailed deployment instructions. Low3/20/2026
v0.1.8-beta.6## AgentSmith-HUB Release v0.1.8-beta.6 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: 7ba85b936538a12c8f859042eb9e9f3c2ca896c6 See README.md in the package for detailed deployment instructions. Low3/11/2026
v0.1.8-beta.5## AgentSmith-HUB Release v0.1.8-beta.5 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: ad31f3e00ae030b3b4dbf161a64bf61ba60d312b See README.md in the package for detailed deployment instructions. Low3/11/2026
v0.1.8-beta.4## AgentSmith-HUB Release v0.1.8-beta.4 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: 50a15f218338c07730945bfc5d89f2ea35c103be See README.md in the package for detailed deployment instructions. Low3/10/2026
v0.1.8-beta.3## AgentSmith-HUB Release v0.1.8-beta.3 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: 2c07bd062ee92eb06258dd8c2d80e464162f04be See README.md in the package for detailed deployment instructions. Low2/26/2026
v0.1.8-beta.2## AgentSmith-HUB Release v0.1.8-beta.2 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: 9e512f705865ee535f85e30bfce70eb2258e4e0a See README.md in the package for detailed deployment instructions. Low2/26/2026
v0.1.8-beta.1## AgentSmith-HUB Release v0.1.8-beta.1 ### What's New - Added CEP functionality - Performance improvements ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.8 - Git Commit: 6b03ee15cd6b583457b4fad618Low2/25/2026
v0.1.7-beta.29## AgentSmith-HUB Release v0.1.7-beta.29 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 32a0b33f14a67308c62610ae7b413ff3b613c46b See README.md in the package for detailed deployment instructions. Low11/26/2025
v0.1.7-beta.28## AgentSmith-HUB Release v0.1.7-beta.28 ### What's news - fix https://github.com/EBWi11/AgentSmith-HUB/issues/32 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 3a54867a4036fe362e9d60Low11/6/2025
v0.1.7-beta.27## AgentSmith-HUB Release v0.1.7-beta.27 ### What's news - Fixed multiple memory leak bugs ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: d31353217c22445d78eddc0a71b4075d6198a438 SeLow11/5/2025
v0.1.7-beta.26## AgentSmith-HUB Release v0.1.7-beta.26 ### What's new - Update Go to version 1.25 and enable greentea gc - Update multiple dependency libraries to the latest stable version - The `<append>` syntax supports formatting text using `_$` ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stopLow10/30/2025
v0.1.7-beta.25## AgentSmith-HUB Release v0.1.7-beta.25 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: af51d9f8c562eaf76c7e64ef6344f17d3625b4f4 See README.md in the package for detailed deployment instructions. Low10/28/2025
v0.1.7-beta.24## AgentSmith-HUB Release v0.1.7-beta.24 What's new - Introduced a queue for instruction processing, optimized instruction compression, and fixed a bug in instruction initialization (TTL issue). - Optimized multiple front-end display issues. ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start anLow10/28/2025
v0.1.7-beta.23## AgentSmith-HUB Release v0.1.7-beta.23 ### Whatโ€˜s new - Fixed a bug where the tutorial was obscured. - Fixed a bug where plugins reported duplicate errors. - Improved the clarity of plugin error logs. ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documenLow10/23/2025
v0.1.7-beta.22## AgentSmith-HUB Release v0.1.7-beta.22 ### What's new - Optimize cluster configuration synchronization - Optimize memory usage - Fixed project status bug ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation See README.md in the package for detailLow10/23/2025
v0.1.7-beta.21## AgentSmith-HUB Release v0.1.7-beta.21 ### What's new [fix: use StringToList in parseDel to properly handle escaped dots](https://github.com/EBWi11/AgentSmith-HUB/commit/af27248c6b2a134a7501c9616179d7e7d96a304f) ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment Low10/15/2025
v0.1.7-beta.20## AgentSmith-HUB Release v0.1.7-beta.20 ### What's news - Improve the rule editing experience and fix the bug that plugin parameters do not support '\\' in rule editing ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information Low10/15/2025
v0.1.7-beta.19## AgentSmith-HUB Release v0.1.7-beta.19 ### What's news Fixed multiple project status bugs. ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 1ed7cb9d7489b882fe7c8d8e1a91be8124b48dfd Low10/15/2025
v0.1.7-beta.18## AgentSmith-HUB Release v0.1.7-beta.18 ### What's New - https://github.com/EBWi11/AgentSmith-HUB/pull/27 - https://github.com/EBWi11/AgentSmith-HUB/pull/26 thx @Percivalll ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version InformatLow10/11/2025
v0.1.7-beta.17## AgentSmith-HUB Release v0.1.7-beta.17 ### What's News - https://github.com/EBWi11/AgentSmith-HUB/commit/4089c5b0262415b27b065ca0cbe4f231af32b208 - https://github.com/EBWi11/AgentSmith-HUB/commit/c3852dbfb4aa73091916c70bb4120a67b7ac7044 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and sLow10/11/2025
v0.1.7-beta.16## AgentSmith-HUB Release v0.1.7-beta.16 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 0f88713eed248a6ba8a795d66490e94057a691f5 See README.md in the package for detailed deployment instructions. Low9/25/2025
v0.1.7-beta.15## AgentSmith-HUB Release v0.1.7-beta.15 ### What's new fix https://github.com/EBWi11/AgentSmith-HUB/issues/24 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: ba7a01893838a30f25cccbce05Low9/24/2025
v0.1.7-rc14## AgentSmith-HUB Release v0.1.7-rc14 ### What's new https://github.com/EBWi11/AgentSmith-HUB/pull/23, Thanks @Percivalll ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 350e594eff47cfLow9/24/2025
v0.1.7-rc13## AgentSmith-HUB Release v0.1.7-rc13 ### What's new fix bug https://github.com/EBWi11/AgentSmith-HUB/issues/22 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 4892d825bf3e1d6b8605e23dbLow9/23/2025
v0.1.7-rc10## AgentSmith-HUB Release v0.1.7-rc10 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: e403ee9b01899b22ad1d535f19602b2ecd28cf86 See README.md in the package for detailed deployment instructions. Low8/27/2025
v0.1.7-rc9## AgentSmith-HUB Release v0.1.7-rc9 ### What's new Added OIDC SSO support. Thanks to @Percivalll. ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 7789ce43c235585b67ad8036387942528a1c3aLow8/27/2025
v0.1.7-rc8## AgentSmith-HUB Release v0.1.7-rc8 ### What's new thx @Percivalll , https://github.com/EBWi11/AgentSmith-HUB/pull/15 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 5b33b9f6413b0586d2Low8/26/2025
v0.1.7-rc7## AgentSmith-HUB Release v0.1.7-rc7 ### Whar's New Add Iterator rule element with ANY/ALL iteration, variable scoping, and nested checks: https://github.com/EBWi11/AgentSmith-HUB/pull/14, thanks @Percivalll ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documLow8/21/2025
v0.1.7-rc6## AgentSmith-HUB Release v0.1.7-rc6 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: c5c4f63a5020be21e1640b54bf4acf1441ae5eec See README.md in the package for detailed deployment instructions. Low8/12/2025
v0.1.7-rc5## AgentSmith-HUB Release v0.1.7-rc5 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 9417231c96a62fc1d08e7da72d0ce84c9d38a408 See README.md in the package for detailed deployment instructions. Low8/8/2025
v0.1.7-rc4## AgentSmith-HUB Release v0.1.7-rc4 ### What's New - [Add threshold support to checklist functionality](https://github.com/EBWi11/AgentSmith-HUB/commit/03415cf9dafab985c3e19a0df3845173c405f57d) ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ##Low8/7/2025
v0.1.7-rc3## AgentSmith-HUB Release v0.1.7-rc3 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: 097f5b10f0f67796ae101157e9a363a4cea92c32 See README.md in the package for detailed deployment instructions. Low8/5/2025
v0.1.7-rc2## AgentSmith-HUB Release v0.1.7-rc2 ### What's new - add randomized heartbeat intervals to prevent heartbeat storms - add grok pattern support for input components - improve instruction processing in SyncInstructions ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - DeploLow8/2/2025
v0.1.7-rc1## AgentSmith-HUB Release v0.1.7-rc1 ### What's Included - Pre-built Linux binaries (AMD64 and ARM64) - Frontend web application - Required libraries (librure.so for both architectures) - Configuration templates - Nginx configuration for web serving - Architecture-aware start and stop scripts - Deployment documentation ### Version Information - Version: v0.1.7 - Git Commit: b7fb2e22a790b058b791240244a13a11d1f62c55 See README.md in the package for detailed deployment instructions. Low8/1/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

sympoziumRun a fleet of AI agents on Kubernetes. Administer your cluster agenticallyv0.10.35
ollamaGet up and running with Kimi-K2.5, GLM-5, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.v0.30.2
mattermost-plugin-agentsMattermost Agents plugin supporting multiple LLMsv2.2.0
platformVision/Mission https://ambient-code.ai : Virtual team management and collaboration platform. User guides: https://ambient-code.github.io/platform/v0.2.13
shaisandboxing shell for ai coding agentsv0.0.11

More in Uncategorized

llama.cppLLM inference in C/C++
modal-clientSDK libraries for Modal
anolisaANOLISA - Agentic Nexus Operating Layer & Interface System Architecture