Skip to content

Commit 9da3e06

Browse files
committed
Merge remote-tracking branch 'agentic/main'
# Conflicts: # README.md
2 parents 28a4204 + 368a10b commit 9da3e06

3,822 files changed

Lines changed: 606674 additions & 3 deletions

File tree

Some content is hidden

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

.clang-format

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
Language: Cpp
3+
BasedOnStyle: Microsoft
4+
AccessModifierOffset: -4
5+
AlignEscapedNewlines: Left
6+
AlignTrailingComments: false
7+
AllowAllParametersOfDeclarationOnNextLine: false
8+
AllowShortFunctionsOnASingleLine: All
9+
AlwaysBreakTemplateDeclarations: Yes
10+
BinPackArguments: false
11+
BinPackParameters: false
12+
BraceWrapping:
13+
AfterCaseLabel: true
14+
AfterUnion: true
15+
AfterExternBlock: false
16+
BreakBeforeTernaryOperators: false
17+
BreakConstructorInitializers: AfterColon
18+
BreakInheritanceList: AfterColon
19+
ColumnLimit: 0
20+
CommentPragmas: "suppress"
21+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
22+
Cpp11BracedListStyle: false
23+
FixNamespaceComments: false
24+
IncludeBlocks: Regroup
25+
IncludeCategories:
26+
- Regex: '^.*(precomp|pch|stdafx)'
27+
Priority: -1
28+
- Regex: '^".*"'
29+
Priority: 1
30+
- Regex: '^<.*>'
31+
Priority: 2
32+
- Regex: '.*'
33+
Priority: 3
34+
KeepEmptyLinesAtTheStartOfBlocks: false
35+
MacroBlockBegin: "BEGIN_TEST_METHOD_PROPERTIES|BEGIN_MODULE|BEGIN_TEST_CLASS|BEGIN_TEST_METHOD"
36+
MacroBlockEnd: "END_TEST_METHOD_PROPERTIES|END_MODULE|END_TEST_CLASS|END_TEST_METHOD"
37+
NamespaceIndentation: All
38+
PointerAlignment: Left
39+
ReflowComments: false
40+
SortIncludes: false
41+
SpaceAfterTemplateKeyword: false
42+
SpacesInAngles: false
43+
SpacesInContainerLiterals: false

.claude/scheduled_tasks.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"sessionId":"1d16de55-847e-423e-a8b7-d7fb66dad564","pid":21340,"acquiredAt":1778053012222}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
2+
# Reference: https://github.com/microsoft/terminal/blob/main/README.md#developer-guidance
3+
properties:
4+
resources:
5+
- resource: Microsoft.Windows.Settings/WindowsSettings
6+
directives:
7+
description: Enable Developer Mode
8+
allowPrerelease: true
9+
# Requires elevation for the set operation
10+
securityContext: elevated
11+
settings:
12+
DeveloperMode: true
13+
- resource: Microsoft.WinGet.DSC/WinGetPackage
14+
id: powershell
15+
directives:
16+
description: Install PowerShell 7
17+
# Requires elevation for the set operation (i.e., installation)
18+
securityContext: elevated
19+
settings:
20+
id: Microsoft.PowerShell
21+
source: winget
22+
- resource: Microsoft.WinGet.DSC/WinGetPackage
23+
id: vsPackage
24+
directives:
25+
description: Install Visual Studio 2022 Enterprise (any edition is OK)
26+
# Requires elevation for the set operation (i.e., installation)
27+
securityContext: elevated
28+
settings:
29+
id: Microsoft.VisualStudio.2022.Enterprise
30+
source: winget
31+
- resource: Microsoft.VisualStudio.DSC/VSComponents
32+
dependsOn:
33+
- vsPackage
34+
directives:
35+
description: Install required VS workloads from project .vsconfig file
36+
allowPrerelease: true
37+
# Requires elevation for the get and set operations
38+
securityContext: elevated
39+
settings:
40+
productId: Microsoft.VisualStudio.Product.Enterprise
41+
channelId: VisualStudio.17.Release
42+
vsConfigFile: '${WinGetConfigRoot}\..\.vsconfig'
43+
configurationVersion: 0.2.0
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
2+
# Reference: https://github.com/microsoft/terminal/blob/main/README.md#developer-guidance
3+
properties:
4+
resources:
5+
- resource: Microsoft.Windows.Settings/WindowsSettings
6+
directives:
7+
description: Enable Developer Mode
8+
allowPrerelease: true
9+
# Requires elevation for the set operation
10+
securityContext: elevated
11+
settings:
12+
DeveloperMode: true
13+
- resource: Microsoft.WinGet.DSC/WinGetPackage
14+
id: powershell
15+
directives:
16+
description: Install PowerShell 7
17+
# Requires elevation for the set operation (i.e., installation)
18+
securityContext: elevated
19+
settings:
20+
id: Microsoft.PowerShell
21+
source: winget
22+
- resource: Microsoft.WinGet.DSC/WinGetPackage
23+
id: vsPackage
24+
directives:
25+
description: Install Visual Studio 2022 Professional (any edition is OK)
26+
# Requires elevation for the set operation (i.e., installation)
27+
securityContext: elevated
28+
settings:
29+
id: Microsoft.VisualStudio.2022.Professional
30+
source: winget
31+
- resource: Microsoft.VisualStudio.DSC/VSComponents
32+
dependsOn:
33+
- vsPackage
34+
directives:
35+
description: Install required VS workloads from project .vsconfig file
36+
allowPrerelease: true
37+
# Requires elevation for the get and set operations
38+
securityContext: elevated
39+
settings:
40+
productId: Microsoft.VisualStudio.Product.Professional
41+
channelId: VisualStudio.17.Release
42+
vsConfigFile: '${WinGetConfigRoot}\..\.vsconfig'
43+
configurationVersion: 0.2.0

.config/configuration.winget

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
2+
# Reference: https://github.com/microsoft/terminal/blob/main/README.md#developer-guidance
3+
properties:
4+
resources:
5+
- resource: Microsoft.Windows.Settings/WindowsSettings
6+
directives:
7+
description: Enable Developer Mode
8+
allowPrerelease: true
9+
# Requires elevation for the set operation
10+
securityContext: elevated
11+
settings:
12+
DeveloperMode: true
13+
- resource: Microsoft.WinGet.DSC/WinGetPackage
14+
id: powershell
15+
directives:
16+
description: Install PowerShell 7
17+
# Requires elevation for the set operation (i.e., installation)
18+
securityContext: elevated
19+
settings:
20+
id: Microsoft.PowerShell
21+
source: winget
22+
- resource: Microsoft.WinGet.DSC/WinGetPackage
23+
id: vsPackage
24+
directives:
25+
description: Install Visual Studio 2022 Community (any edition is OK)
26+
# Requires elevation for the set operation (i.e., installation)
27+
securityContext: elevated
28+
settings:
29+
id: Microsoft.VisualStudio.2022.Community
30+
source: winget
31+
- resource: Microsoft.VisualStudio.DSC/VSComponents
32+
dependsOn:
33+
- vsPackage
34+
directives:
35+
description: Install required VS workloads from project .vsconfig file
36+
allowPrerelease: true
37+
# Requires elevation for the get and set operations
38+
securityContext: elevated
39+
settings:
40+
productId: Microsoft.VisualStudio.Product.Community
41+
channelId: VisualStudio.17.Release
42+
vsConfigFile: '${WinGetConfigRoot}\..\.vsconfig'
43+
configurationVersion: 0.2.0

.config/dotnet-tools.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"XamlStyler.Console": {
6+
"version": "3.2501.8",
7+
"commands": [
8+
"xstyler"
9+
]
10+
}
11+
}
12+
}

.dotnet/.dotnet/.workloadAdvertisingManifestSentinel10.0.200

Whitespace-only changes.

.dotnet/.dotnet/10.0.201.aspNetCertificateSentinel

Whitespace-only changes.

.dotnet/.dotnet/10.0.201.dotnetFirstUseSentinel

Whitespace-only changes.

.dotnet/.dotnet/10.0.201.toolpath.sentinel

Whitespace-only changes.

0 commit comments

Comments
 (0)