بنقرة واحدة
agent-skills
يحتوي agent-skills على 25 من skills المجمعة من chen3feng، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.
Skills في هذا المستودع
A TRefCountPtr/TSharedPtr member in a UE class needs the pointee's full definition, not a forward decl.
When WSL's mirrored networking fails and falls back to "None", plus /etc/wsl.conf has generateResolvConf=false, the distro has no DNS; fix both layers.
When a Windows shell (PowerShell/cmd) feeds a bash script into WSL, CRLF line endings can corrupt the first shell builtin; force LF or pipe via a temp file.
Before "fixing" a recurring error, check git log to see if it was already fixed upstream — the working tree may just be stale.
Always add a space after URL brackets in Markdown to prevent 404 errors with special characters.
Plan a Python 3 modernization sweep (f-strings, super(), type hints) as a series of mechanical PRs, not one mega-PR.
Run a quick non-behavioral audit of a Python repo and split findings into bug / dead-code / style PRs.
Standard branch → push → `gh pr create` workflow, including when to fork.
A downstream sidecar smoke suite can expose upstream bugs that unit tests miss; fix upstream first, then land the suite.
Pass long/multi-line strings (commit messages, PR bodies) through an agent shell without corruption.
When a sidecar or downstream repo papers over an upstream bug, track the workarounds so they can be reversed the moment upstream releases the fix.
After two failed anti-optimization patches, stop and reduce; don't keep bolting on `volatile` / `noinline`.
`__attribute__((optimize("O0")))` on one function inside an `-O2` TU on GCC can crash on first call.
Identify a tool's real vendor/version by asking it (`--version`), not by sniffing its filename or PATH entry.
When adding unit tests to a repo whose `test/` dir is actually integration, create a parallel `tests/unit/` instead of mixing them.
After a PR is merged, cut the next branch from fresh origin/master — don't keep committing on the old feature branch.
Where to put transient files, one-off scripts, audit reports and PR bodies the agent creates while working.
Over-indented suites are valid Python; compileall won't catch a dropped with/try scope. Verify end-to-end.
After a GitHub repo moves to a new owner/org, sweep stale URLs everywhere — but preserve historical narrative.
Don't combine `git rev-parse --short` with multiple refs; it demands a single revision.
House style for Chinese Markdown docs, and how to enforce it with the cndocstyle package from cn-doc-style-guide.
Auto-fix Markdown prose without corrupting code blocks, inline code, URLs, or HTML.
Before "fixing" a README, verify the actual code behavior — don't trust either in isolation.
Commit with the right name/email per repo, and survive spaces in `git -c user.name=...`.
Work around editor/search tools that only accept indexed-workspace paths.