-
Notifications
You must be signed in to change notification settings - Fork 0
docs(agents): add ecosystem table #83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -122,3 +122,43 @@ src/ | |||||
| ANcpLua.AotReflection/ # AOT reflection source generator | ||||||
| ANcpLua.AotReflection.Attributes/ # AOT reflection attribute contracts | ||||||
| ``` | ||||||
|
|
||||||
| ## ANcpLua Ecosystem | ||||||
|
|
||||||
| | Repo | Purpose | NuGet | CI checks required | | ||||||
| |---|---|---|---| | ||||||
| | [ANcpLua.NET.Sdk](https://github.com/ANcpLua/ANcpLua.NET.Sdk) | Opinionated MSBuild SDK — standardized defaults, policy enforcement, analyzer injection | [nuget.org](https://www.nuget.org/packages/ANcpLua.NET.Sdk) | `compute_version`, `lint_config`, `test (ubuntu/windows/macos)`, `create_nuget` | | ||||||
| | [ANcpLua.Analyzers](https://github.com/ANcpLua/ANcpLua.Analyzers) | Custom Roslyn analyzers (auto-injected by the SDK) | [nuget.org](https://www.nuget.org/packages/ANcpLua.Analyzers) | `build`, `test (ubuntu/windows/macos)` | | ||||||
| | [ANcpLua.Roslyn.Utilities](https://github.com/ANcpLua/ANcpLua.Roslyn.Utilities) | Source generator utilities, TryParse extensions, polyfills | [nuget.org](https://www.nuget.org/packages/ANcpLua.Roslyn.Utilities) | `build (ubuntu/windows)`, `version` | | ||||||
| | [ANcpLua.Agents](https://github.com/ANcpLua/ANcpLua.Agents) | MAF runtime helpers + agent test infrastructure | [nuget.org](https://www.nuget.org/packages/ANcpLua.Agents) | `build (ubuntu/windows/macos)`, `version` | | ||||||
|
|
||||||
| ### Branch protection (all 4 repos) | ||||||
|
|
||||||
| - PR required to merge into `main` (0 approvals, squash preferred) | ||||||
| - Required status checks must pass (CI jobs listed above) | ||||||
| - Branch must be up-to-date with `main` before merge | ||||||
| - Force push and branch deletion blocked on `main` | ||||||
| - Optional checks (CodeRabbit, GitGuardian, Copilot review, auto-merge) do not block merges | ||||||
|
|
||||||
| ### Dependency graph | ||||||
|
|
||||||
| ``` | ||||||
| ANcpLua.NET.Sdk | ||||||
| ├── injects ANcpLua.Analyzers (compile-time) | ||||||
| └── ships Version.props (version truth for all consumers) | ||||||
|
|
||||||
| ANcpLua.Analyzers | ||||||
| └── consumes ANcpLua.Roslyn.Utilities.Sources (source-only, internal) | ||||||
|
|
||||||
| ANcpLua.Roslyn.Utilities | ||||||
| └── standalone (no first-party deps) | ||||||
|
|
||||||
| ANcpLua.Agents | ||||||
| └── standalone (no first-party deps) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The dependency graph describes
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
| ### Release flow | ||||||
|
|
||||||
| 1. Push to `main` via PR — CI runs, auto-merge bots handle dep bumps | ||||||
| 2. Tag `vX.Y.Z` on `main` — publish workflow pushes to NuGet | ||||||
| 3. NuGet indexes in ~4-8 minutes — downstream repos pick up via Renovate | ||||||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI checks for
ANcpLua.Roslyn.Utilitiesare missingmacos, whereas the other repositories in the ecosystem (including the downstreamANcpLua.Agents) include it. Since this is a cross-platform utility library, it should likely be built and verified on all three platforms for consistency.