- 產生時間:2026-07-05 13:53:43 CST
- 專案根目錄:
/home/chenting/projects/OW - 重跑次數:3
- Model:
gpt-5.4-mini - Effort:
medium - 執行指令:
codex exec --model gpt-5.4-mini -c model_reasoning_effort="medium" --sandbox danger-full-access ""
These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.
- Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
- Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
| description | Guidelines for generating SQL statements and stored procedures | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| tools |
|
- all tables should have a primary key constraint
- all foreign key constraints should have a name
- all foreign key constraints should be defined inline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Debug support provided by common PowerShell function parameters, which is natively aliased as -d or -db | |
| # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7.4#-debug | |
| param( | |
| [ValidateSet('gh', 'git', 'shell')] | |
| [Alias('t')] | |
| [String]$Target = 'shell', | |
| [Parameter(Position=0, ValueFromRemainingArguments)] | |
| [string]$Prompt | |
| ) |
- 聯發科創新基地介紹
- 聯發科的全資子公司,專注於 AI 研究
- 據點遍佈劍橋、倫敦和台灣大學
This powershell script modifies the Base Image, or the Virtual Hard Disk, which the Windows Sandbox launches upon startup. It will copy the required files to the sandbox and add a registry key which will install them upon startup. By default the script will install the latest stable release of Winget. You can specify to use the latest pre-release with the -PreRelease switch.
When a new version of Winget is released, run this script again to update the installation in the sandbox to the latest version
-
開啟 Windows PowerShell
-
將
IE函式加入到$PROFILE之中[System.IO.Directory]::CreateDirectory([System.IO.Path]::GetDirectoryName($PROFILE)) notepad $PROFILE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class TimeOnlyConverter : JsonConverter<TimeOnly> | |
| { | |
| private readonly string serializationFormat; | |
| public TimeOnlyConverter() : this(null) { } | |
| public TimeOnlyConverter(string? serializationFormat) | |
| { | |
| this.serializationFormat = serializationFormat ?? "HH:mm:ss.fff"; | |
| } |
NewerOlder