buddyai-agent-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>in.buddyai</groupId>
<artifactId>buddyai-agent-sdk</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>in.buddyai</groupId>
<artifactId>buddyai-agentic-framework</artifactId>
<version>1.0.1</version>
</parent>
<artifactId>buddyai-agent-sdk</artifactId>
<packaging>jar</packaging>
<name>BuddyAI Agent SDK</name>
<description>
Plugin contract for BuddyAI agents.
Contains: AgentContract, AgentTool, AgentSkill, AgentContext,
AgentLogEvent, AgentLogSink, AgentManifest,
ToolResult, ToolInput,
ApprovalRequest, ApprovalResult.
Rules:
- ZERO external runtime dependencies (pure JDK 21)
- Only slf4j-api (no binding) and lombok (provided/compile-only)
- This is the ONLY BuddyAI jar that agents should depend on
- Never add platform, Spring, or Anthropic SDK here
</description>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<dependencies>
<!-- SLF4J API only — no binding — agent or platform chooses the binding -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Lombok — compile-only, NOT bundled in the jar -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Attach sources so IDE navigation works in agent projects -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>