Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.kb/

# build output
bin/
obj/
artifacts/
*.user
.vs/
TestResults/

# runtime state + local models
data/
models/
demo-data/
21 changes: 21 additions & 0 deletions Automind.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<Solution>
<Folder Name="/src/">
<Project Path="src/Universalis.Core/Universalis.Core.csproj" />
<Project Path="src/Automind.Kernel/Automind.Kernel.csproj" />
<Project Path="src/Automind.Tools/Automind.Tools.csproj" />
<Project Path="src/Automind.Mcp/Automind.Mcp.csproj" />
<Project Path="src/Automind.Memory/Automind.Memory.csproj" />
<Project Path="src/Automind.Reaqtor/Automind.Reaqtor.csproj" />
<Project Path="src/Automind.Cli/Automind.Cli.csproj" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/Automind.Integration.Tests/Automind.Integration.Tests.csproj" />
<Project Path="tests/Automind.Kernel.Tests/Automind.Kernel.Tests.csproj" />
<Project Path="tests/Automind.Mcp.Tests/Automind.Mcp.Tests.csproj" />
<Project Path="tests/Automind.Reaqtor.Tests/Automind.Reaqtor.Tests.csproj" />
<Project Path="tests/Universalis.Core.Tests/Universalis.Core.Tests.csproj" />
</Folder>
<Folder Name="/tools/">
<Project Path="tools/McpSampleServer/McpSampleServer.csproj" />
</Folder>
</Solution>
13 changes: 13 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project>

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
</PropertyGroup>

</Project>
56 changes: 56 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<Project>

<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
<!-- The public nuget.org Reaqtor/Reaqtive/Nuqleon packages. They predate the repo's
.NET 10 modernization (older TFMs, consumed via netstandard2.0 compatibility); to use
a locally built newer version instead, re-add the local feed to NuGet.config and pin
its exact git-height version here. -->
<ReaqtorVersion>1.0.0-beta.24</ReaqtorVersion>
</PropertyGroup>

<ItemGroup Label="Reaqtor stack (nuget.org)">
<!-- The public beta.24 packages transitively reference Newtonsoft.Json 12.0.3, which has a
known high-severity advisory (NU1903) — lifted to the patched line here. -->
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
<PackageVersion Include="Reaqtor.Shebang.Service" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtor.Shebang.Client" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtor.QueryEngine" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtor.QueryEngine.Serialization.DataModel" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtor.Client" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtor.Reliable" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtive.Core" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtive.Interfaces" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtive.Linq" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtive.Scheduler" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtive.Testing" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Reaqtive.TestingFramework" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Nuqleon.DataModel" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Nuqleon.Json" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Nuqleon.Linq.CompilerServices" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Nuqleon.Linq.Expressions.Bonsai" Version="$(ReaqtorVersion)" />
<PackageVersion Include="Nuqleon.Linq.Expressions.Bonsai.Serialization" Version="$(ReaqtorVersion)" />
</ItemGroup>

<ItemGroup Label="AI">
<PackageVersion Include="Microsoft.Extensions.AI.Abstractions" Version="10.8.0" />
<PackageVersion Include="Microsoft.Extensions.AI" Version="10.8.0" />
<PackageVersion Include="OllamaSharp" Version="5.4.27" />
<PackageVersion Include="Microsoft.SemanticKernel.Connectors.Onnx" Version="1.78.0-alpha" />
<PackageVersion Include="Microsoft.SemanticKernel.Connectors.InMemory" Version="1.74.0-preview" />
<PackageVersion Include="ModelContextProtocol" Version="1.4.1" />
</ItemGroup>

<ItemGroup Label="CLI">
<PackageVersion Include="Spectre.Console" Version="0.57.2" />
<PackageVersion Include="Spectre.Console.Cli" Version="0.55.0" />
</ItemGroup>

<ItemGroup Label="Telemetry">
<PackageVersion Include="OpenTelemetry" Version="1.16.0" />
<PackageVersion Include="OpenTelemetry.Exporter.Console" Version="1.16.0" />
<PackageVersion Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.16.0" />
</ItemGroup>

</Project>
7 changes: 7 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
Loading