Skip to content

Commit 7ad563e

Browse files
authored
Merge branch 'main' into TestHelixCosmos
2 parents 207acd9 + 8bfecfd commit 7ad563e

File tree

59 files changed

+460
-552
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+460
-552
lines changed

.agents/skills/analyzers/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
name: analyzers
33
description: 'Implementation details for EF Core Roslyn analyzers. Use when changing analyzers, fix providers, or diagnostic suppressors.'
4-
user-invokable: false
4+
user-invocable: false
55
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
name: bulk-operations
33
description: 'Implementation details for EF Core ExecuteUpdate/ExecuteDelete bulk operations. Use when changing UpdateExpression/DeleteExpression LINQ translation or the corresponding SQL AST nodes.'
4-
user-invokable: false
4+
user-invocable: false
55
---

.agents/skills/change-tracking/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: change-tracking
33
description: 'Implementation details for EF Core change tracking. Use when changing InternalEntityEntry, ChangeDetector, SnapshotFactoryFactory, or related entity state, snapshot, or property accessor code.'
4-
user-invokable: false
4+
user-invocable: false
55
---
66

77
# Change Tracking

.agents/skills/cosmos-provider/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: cosmos-provider
33
description: 'Implementation details for the EF Core Azure Cosmos DB provider. Use when changing Cosmos-specific code.'
4-
user-invokable: false
4+
user-invocable: false
55
---
66

77
# Cosmos DB Provider

.agents/skills/dbcontext-and-services/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: dbcontext-and-services
33
description: 'Implementation details for EF Core DbContext and the DI service infrastructure. Use when changing context configuration, service registration, service lifetimes, DbContext pooling, or the Dependencies pattern.'
4-
user-invokable: false
4+
user-invocable: false
55
---
66

77
# DbContext & Services

.agents/skills/make-custom-agent/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ After creating or modifying an agent, verify:
232232
| Using `isSticky: true` unnecessarily | Only set sticky if the agent should persist between turns by default |
233233
| No `extensionDependencies` on `github.copilot-chat` | Add it; otherwise the contribution point may not be available |
234234
| Agent invoked as subagent unexpectedly | Set `disable-model-invocation: true` |
235-
| Subagent appears in the dropdown | Set `user-invokable: false` |
235+
| Subagent appears in the dropdown | Set `user-invocable: false` |
236236

237237
## References
238238

.agents/skills/make-skill/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Create the file with required YAML frontmatter:
5151
---
5252
name: <skill-name>
5353
description: <description of what the skill does and when to use it>
54-
user-invokable: <Optional, defaults to true. Set to false for background knowledge skills.>
54+
user-invocable: <Optional, defaults to true. Set to false for background knowledge skills.>
5555
argument-hint: <Optional, guidance for how agents should format arguments when invoking the skill.>
5656
disable-model-invocation: <Optional, set to true to prevent agents from invoking the skill and only allow to be used through manual invocation.>
5757
compatibility: <Optional, specify any environment, tool, or context requirements for the skill.>

.agents/skills/migrations/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: migrations
33
description: 'Implementation details for EF Core migrations. Use when changing MigrationsSqlGenerator, model diffing, migration operations, HistoryRepository, the Migrator or related classes.'
4-
user-invokable: false
4+
user-invocable: false
55
---
66

77
# Migrations

.agents/skills/model-building/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: model-building
33
description: 'Implementation details for EF Core model building. Use when changing ConventionSet, ModelBuilder, IConvention implementations, ModelRuntimeInitializer, RuntimeModel, or related classes.'
4-
user-invokable: false
4+
user-invocable: false
55
---
66

77
# Model Building, Conventions & Initialization

.agents/skills/query-pipeline/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: query-pipeline
33
description: 'Implementation details for EF Core LINQ query translation and SQL generation. Use when changing expression visitors, SqlExpressions, QuerySqlGenerator, ShaperProcessingExpressionVisitor, or related classes.'
4-
user-invokable: false
4+
user-invocable: false
55
---
66

77
# Query Pipeline

0 commit comments

Comments
 (0)