-
Notifications
You must be signed in to change notification settings - Fork 12
[2/5] Add agent-scoped announcement models and authoring client #270
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # Compiled Python | ||
| __pycache__/ | ||
| *.pyc | ||
|
|
||
| # This server owns NO token cache of its own. It uses exactly the two shared | ||
| # delegated caches: | ||
| # - Microsoft Graph -> solutions/ess-maker-skills/.local/.token_cache.bin | ||
| # - AgentConfiguration -> src/mcp/agentconfig_core/.local/msal_token_cache.bin | ||
| # both of which are ignored by their own directories' rules. This entry is | ||
| # belt-and-braces only: if anything ever drops local state here it must not be | ||
| # committed. | ||
| .local/ | ||
|
Contributor
Author
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. Walkthrough — Keep generated and local state out of source control. The Python entries ignore compiled files, while |
||
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.
Walkthrough — Give the new client and models their own automated checks.
This adds an Org Announcements job that sets up Python 3.11, installs the development and feature dependencies, and selects the authoring-client and draft-model tests. Keeping those two files explicit lets this layer be checked before the later directory and MCP runtime pieces are added. It describes what CI will run; it is not a deployment step or a statement that the tests have passed.