Initial commit: Nano Agent:Windows 优先、本地优先的 Codex 风格桌面智能体 MVP

This commit is contained in:
WpyQwq
2026-09-19 11:58:56 +08:00
commit aafc3f5c6b
23 changed files with 2359 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
Add-Type -AssemblyName System.Drawing
Add-Type -AssemblyName System.Windows.Forms
$bounds = [System.Windows.Forms.SystemInformation]::VirtualScreen
$bitmap = New-Object System.Drawing.Bitmap $bounds.Width, $bounds.Height
$graphics = [System.Drawing.Graphics]::FromImage($bitmap)
$graphics.CopyFromScreen($bounds.Left, $bounds.Top, 0, 0, $bitmap.Size)
$bitmap.Save('d:\Nano\assets\ui-redesign-v2.png', [System.Drawing.Imaging.ImageFormat]::Png)
$graphics.Dispose()
$bitmap.Dispose()
Write-Output 'done'