1 · The CLI — for scaffolding a new agent

The fastest path. Installs a single fat jar to ~/.regulus/bin/ and a shell wrapper called regulus.

curl -fsSL https://raw.githubusercontent.com/neul-labs/regulus/main/install.sh | sh

Then scaffold an agent:

regulus init my-agent \
  --profiles=eu-ai-act,uk-gdpr,fca-sysc \
  --frameworks=nist-ai-rmf,iso-42001

That produces 12 files: a working Spring Boot agent on ADK 1.2, with the chosen profiles + frameworks wired in.

cd my-agent && gradle wrapper && ./gradlew bootRun
# then: http://localhost:8080/chat

2 · Maven coordinates — for an existing project

The plugins module brings the 8 ADK BasePlugins, the 10 regulation profiles, and the 6 frameworks. Add to build.gradle.kts:

dependencies {
  implementation(platform("com.neullabs:regulus-ai-bom:0.2.1"))
  implementation("com.neullabs:regulus-ai-adk-plugins")
  implementation("com.neullabs:regulus-ai-adk-services")
  // GRC adapter of your choice — pick one or more
  implementation("com.neullabs:regulus-ai-grc-servicenow")
}

Or Maven pom.xml:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>com.neullabs</groupId>
      <artifactId>regulus-ai-bom</artifactId>
      <version>0.2.1</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

All coordinates live in the com.neullabs Maven Central namespace.

3 · Gradle plugin — for the whole workflow

The Gradle plugin brings the scaffold task, coverage matrix generation, and audit-verify tasks into your existing build:

plugins {
  id("com.neullabs.compliance") version "0.2.1"
}

compliance {
  profiles = listOf("eu-ai-act", "uk-gdpr", "fca-sysc")
  frameworks = listOf("nist-ai-rmf", "iso-42001")
}

Then run:

./gradlew initRegulusAgent       # scaffold an ADK agent in the current project
./gradlew complianceCoverage     # print the regulation × control matrix
./gradlew complianceAuditVerify  # verify a hash-chained audit log

The plugin is published on the Gradle Plugin Portal.

Prerequisites

Verify the install

$ regulus --version
regulus 0.2.1

$ regulus doctor
✓ Java 21 (openjdk-21.0.5)
✓ ADK 1.2.0 on classpath
✓ 10 regulation profiles loaded
✓ 6 governance frameworks loaded

Next steps