Converting agents to skill with decision tree"

Fixes #999
This commit is contained in:
Aaron Powell
2026-03-13 14:46:30 +11:00
parent f2f1c7b82c
commit 6c6dda758b
7 changed files with 87 additions and 63 deletions

View File

@@ -0,0 +1,15 @@
# Semantic Kernel for .NET
Use this reference when the target project is written in C# or another .NET language.
## Authoritative sources
- Repository: <https://github.com/microsoft/semantic-kernel/tree/main/dotnet>
- Samples: <https://github.com/microsoft/semantic-kernel/tree/main/dotnet/samples>
## .NET-specific guidance
- Use `async`/`await` patterns consistently for kernel operations.
- Follow .NET best practices with strong typing and explicit interfaces.
- Keep service registration, configuration, and authentication aligned with standard .NET hosting patterns.
- Check the latest .NET samples before introducing new APIs, plugins, or orchestration patterns.

View File

@@ -0,0 +1,15 @@
# Semantic Kernel for Python
Use this reference when the target project is written in Python.
## Authoritative sources
- Repository: <https://github.com/microsoft/semantic-kernel/tree/main/python>
- Samples: <https://github.com/microsoft/semantic-kernel/tree/main/python/samples>
## Python-specific guidance
- Use modern async patterns throughout kernel operations.
- Add type hints and keep APIs explicit even in dynamic code.
- Follow standard Python packaging and environment practices for dependencies and tooling.
- Check the latest Python samples before introducing new APIs, plugins, or orchestration patterns.