Skip to content

Latest commit

 

History

History
58 lines (45 loc) · 2.27 KB

File metadata and controls

58 lines (45 loc) · 2.27 KB

v0.4 Readiness

AgentContextKit v0.4 local readiness is tracked separately from public release approval.

This page consolidates the local review after these completed work areas:

  • Offline static Web UI prototype with ackit webui.
  • Scan result dashboard refinement.
  • Generated agent/context file preview refinement.
  • Risk finding browser refinement.
  • Task preview refinement.

Local Readiness Review

Run the v0.4 readiness check:

powershell -ExecutionPolicy Bypass -File scripts/check-v040-readiness.ps1

Run it as a failing gate for missing v0.4 assets:

powershell -ExecutionPolicy Bypass -File scripts/check-v040-readiness.ps1 -FailOnIssues

-FailOnIssues fails only for missing v0.4 readiness assets. It reports public-release blockers separately because those require maintainer-only decisions.

Expected Public Blockers

Public release remains blocked until:

  • RepositoryUrl is replaced with the real public repository URL.
  • PackageProjectUrl is replaced with the real public project URL.
  • A release tag is created after explicit maintainer approval.
  • Push and NuGet publish are explicitly approved.

Required Validation

Use these commands before treating v0.4 local readiness as reviewed:

powershell -ExecutionPolicy Bypass -File scripts/check-v040-readiness.ps1 -FailOnIssues
powershell -ExecutionPolicy Bypass -File scripts/check-public-release-gates.ps1
dotnet build AgentContextKit.sln -c Release --no-restore
dotnet test AgentContextKit.sln -c Release --no-build
dotnet run --project src/AgentContextKit.Cli/AgentContextKit.Cli.csproj -c Release --no-build -- scan --ci
dotnet run --project src/AgentContextKit.Cli/AgentContextKit.Cli.csproj -c Release --no-build -- webui --output .ackit/webui/v040-readiness.html --json
powershell -ExecutionPolicy Bypass -File scripts/verify-release.ps1

Use failing public gates only after maintainer-only public release blockers are resolved:

powershell -ExecutionPolicy Bypass -File scripts/check-public-release-gates.ps1 -FailOnIssues

Next Roadmap Step

After v0.4 local readiness is consolidated, the next product line is v0.5:

  • Optional LLM integration architecture.
  • ILLMProvider abstraction.
  • Dry-run prompt pack generation.
  • User-approved context export.