11---
22updated : 2026-06-07
3- published : 2026-06-09
4- version : " 0.1.0 "
3+ published : 2026-06-10
4+ version : " 0.1.1 "
55edition : " Release"
6- status : " Release Candidate "
6+ status : " Release"
77issuer : ai-kernel@aikernel.net
88maintainer : " Takuya (AIKernel Project Maintainer)"
99---
@@ -21,16 +21,53 @@ This repository manages the canonical contract set of AIKernel.
2121
2222AIKernel.NET is a contract-first foundation that treats LLMs not as simple APIs, but as capability-bearing processes.
2323
24+ In the AIOS SDK, AIKernel.NET is the contract vocabulary layer. It defines the
25+ stable interfaces, DTOs, enums, and boundary types that other AIKernel layers
26+ compose into an AI Operating System distribution.
27+
28+ AIKernel also provides an official AIOS distribution, codenamed
29+ ** AIKernel.Monolith** . Monolith has begun development as the standard AIOS that
30+ integrates the SDK layers into a unified reference system after the 0.1.x line
31+ stabilizes.
32+
33+ ---
34+
35+ ## Start Here
36+
37+ If you are new to AIKernel, use this repository for contracts and vocabulary,
38+ then move to the runtime repository that matches what you want to run.
39+
40+ | You want to... | Start with |
41+ | --- | --- |
42+ | Reference stable interfaces, DTOs, and enums | ` AIKernel.Abstractions ` , ` AIKernel.Contracts ` , ` AIKernel.Dtos ` , ` AIKernel.Enums ` |
43+ | Build a .NET host or service | [ AIKernel.Core] ( https://github.com/AIKernel-NET/AIKernel.Core ) |
44+ | Add official Providers or OS drivers | [ AIKernel.Providers] ( https://github.com/AIKernel-NET/AIKernel.Providers ) |
45+ | Run physical execution engines | [ AIKernel.Control] ( https://github.com/AIKernel-NET/AIKernel.Control ) |
46+ | Use the ` aik ` CLI or replay/inspection tools | [ AIKernel.Tools] ( https://github.com/AIKernel-NET/AIKernel.Tools ) |
47+ | Run browser/WebAssembly workloads | [ AIKernel.Wasm] ( https://github.com/AIKernel-NET/AIKernel.Wasm ) |
48+ | Learn through runnable examples | [ AIKernel.Demo] ( https://github.com/AIKernel-NET/AIKernel.Demo ) |
49+
50+ Install the contract packages together:
51+
52+ ``` bash
53+ dotnet add package AIKernel.Abstractions --version 0.1.1
54+ dotnet add package AIKernel.Contracts --version 0.1.1
55+ dotnet add package AIKernel.Dtos --version 0.1.1
56+ dotnet add package AIKernel.Enums --version 0.1.1
57+ ```
58+
59+ Do not mix AIKernel contract packages from different version families.
60+
2461---
2562
26- ## 0.1.0 Prototype Validation Phase
63+ ## 0.1.1 Public Package Line
2764
28- The 0.0.x design-implementation phase is complete. The 0.1.0 package family is
29- the first prototype validation baseline, scheduled for publication on
30- 2026-06-09.
65+ The 0.0.x design-implementation phase and the 0.1.0 prototype validation
66+ baseline are complete. The current public package line is 0.1.1.
3167
32- This phase validates the contract packages together with executable Core,
33- external Capability modules, and demo/control repositories:
68+ The 0.1.1 line publishes the contract packages together with executable Core,
69+ external Capability modules, WASM runtime packages, tools, and demo/control
70+ repositories:
3471
3572- ` AIKernel.NET ` - MIT contract packages: interfaces, DTOs, and enums.
3673- ` AIKernel.Core ` - Apache-2.0 runtime, monads, DSL, Kernel, Hosting, and
@@ -41,9 +78,13 @@ external Capability modules, and demo/control repositories:
4178- ` AIKernel.Tools ` - external Capability modules and developer tools.
4279- ` AIKernel.Control ` - control-plane execution engines for CPU, GPU, emulator,
4380 Bonsai mapping, and diagnostics.
81+ - ` AIKernel.Providers ` - official extension Provider and standard OS driver
82+ packages.
83+ - ` AIKernel.Wasm ` - browser/WebAssembly runtime and WebGPU provider packages.
4484
4585Historical architecture documents may retain their original 0.0.x front matter
46- and changelog entries. The current public release line is 0.1.0.
86+ and 0.1.0 prototype notes. User-facing package installation examples should use
87+ the current 0.1.1 packages.
4788
4889Release notes:
4990
@@ -142,7 +183,7 @@ app.Run();
142183### Target Experience / Boot Log Example
143184
144185``` txt
145- [KERNEL] Initializing AIKernel.NET v0.1.0 ...
186+ [KERNEL] Initializing AIKernel.NET v0.1.1 ...
146187[KERNEL] Loading ISignatureTrustStore... [OK]
147188[KERNEL] Mounting Vfs (Git: ./context)... [OK]
148189[KERNEL] Verifying System Prompt Signature... [VALID]
@@ -458,6 +499,9 @@ Enterprise extensions may include:
458499- Contributions are PR-based.
459500- Compatibility for Contracts and PromptRules must be explicit.
460501- Breaking changes must include migration guides.
502+ - Contributors must follow the full development discipline in
503+ [ AIKernel Development Guidelines] ( docs/guidelines/AIKERNEL_DEVELOPMENT_GUIDELINES.md )
504+ and [ AIKernel 開発ガイドライン] ( docs/guidelines/AIKERNEL_DEVELOPMENT_GUIDELINES-jp.md ) .
461505
462506---
463507
0 commit comments