├── .editorconfig ├── .gitignore ├── CompilerBrain.slnx ├── LICENSE ├── README.md ├── global.json ├── opensource.snk ├── sandbox └── ConsoleApp │ ├── ConsoleApp.csproj │ └── Program.cs ├── src └── CompilerBrain │ ├── AssemblyAttributes.cs │ ├── Commands.cs │ ├── CompilerBrain.csproj │ ├── CompilerBrainAIFunctions.cs │ ├── CompilerBrainChatService.cs │ ├── DotNetCommandLine.cs │ ├── Extensions.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── RequestResponseTypes.cs │ ├── SessionMemory.cs │ └── StringExtensions.cs └── tests └── CompilerBrain.Tests ├── CompilerBrain.Tests.csproj └── UnitTest1.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/.gitignore -------------------------------------------------------------------------------- /CompilerBrain.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/CompilerBrain.slnx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/global.json -------------------------------------------------------------------------------- /opensource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/opensource.snk -------------------------------------------------------------------------------- /sandbox/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/sandbox/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /sandbox/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | using System.Text; 4 | 5 | Console.WriteLine("foo"); 6 | -------------------------------------------------------------------------------- /src/CompilerBrain/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/CompilerBrain/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/Commands.cs -------------------------------------------------------------------------------- /src/CompilerBrain/CompilerBrain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/CompilerBrain.csproj -------------------------------------------------------------------------------- /src/CompilerBrain/CompilerBrainAIFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/CompilerBrainAIFunctions.cs -------------------------------------------------------------------------------- /src/CompilerBrain/CompilerBrainChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/CompilerBrainChatService.cs -------------------------------------------------------------------------------- /src/CompilerBrain/DotNetCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/DotNetCommandLine.cs -------------------------------------------------------------------------------- /src/CompilerBrain/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/Extensions.cs -------------------------------------------------------------------------------- /src/CompilerBrain/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/Program.cs -------------------------------------------------------------------------------- /src/CompilerBrain/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CompilerBrain/RequestResponseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/RequestResponseTypes.cs -------------------------------------------------------------------------------- /src/CompilerBrain/SessionMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/SessionMemory.cs -------------------------------------------------------------------------------- /src/CompilerBrain/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/src/CompilerBrain/StringExtensions.cs -------------------------------------------------------------------------------- /tests/CompilerBrain.Tests/CompilerBrain.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/tests/CompilerBrain.Tests/CompilerBrain.Tests.csproj -------------------------------------------------------------------------------- /tests/CompilerBrain.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/CompilerBrain/HEAD/tests/CompilerBrain.Tests/UnitTest1.cs --------------------------------------------------------------------------------