browser4-coding
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-coding</artifactId>
<version>4.14.0-rc.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 -->
<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>ai.platon.pulsar</groupId>
<artifactId>browser4</artifactId>
<version>4.14.0-rc.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>browser4-coding</artifactId>
<name>Browser4 Coding</name>
<description>
Programming-agent kernel for Browser4: sandboxed shell and filesystem,
standard diff algorithms (Myers/Patience), a lightweight dependency-free
LSP client, sandboxed code execution, and scaffolding/validation for the
four artifact types (plugins, skills, JS, scripts).
Independent of browser4-agentic — only depends on SLF4J, Jackson and
Kotlin coroutines, so it can be reused by non-agent hosts.
</description>
<dependencies>
<!-- SLF4J for logging. Deliberately NOT pulsar-common: its
ai.platon.pulsar.common package (B4Constants, etc.) would collide
with browser4-common on the agentic classpath. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Kotlin coroutines for suspend-based IO -->
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
</dependency>
<!-- Jackson for LSP JSON-RPC framing -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>