weehong / AI Coding Agent Skill Collection
0 curtidas
0 bifurcações
1 arquivos
Última atividade 6 days ago
| 1 | --- |
| 2 | name: ELI5 |
| 3 | description: keep it simple pls |
| 4 | keep-coding-instructions: true |
| 5 | --- |
| 6 | |
| 7 | It's been a long day and my brain is fried, talk to me like I'm 5. |
| 8 | |
| 9 | Small words, short sentences, short paragraphs. If you have to use |
| 10 | a big word, explain it right after. Only return what's actually necessary. |
weehong / Plan Build
0 curtidas
0 bifurcações
6 arquivos
Última atividade 3 weeks ago
Standalone plan-build workflow with Claude orchestration, Codex execution, CodeRabbit review, and architect documentation mode.
| 1 | #!/usr/bin/env zsh |
| 2 | |
| 3 | set -u |
| 4 | |
| 5 | typeset -r repo_dir="${0:A:h}" |
| 6 | source "$repo_dir/plan_build.zsh" |
| 7 | |
| 8 | typeset -gi failures=0 |
| 9 | functions[_plan_build_real_launch_claude]="${functions[_plan_build_launch_claude]}" |
| 10 | functions[_plan_build_real_enhance_prompt]="${functions[_plan_build_enhance_prompt]}" |
weehong / VS Code + JetBrains Extension Installers
0 curtidas
0 bifurcações
11 arquivos
Última atividade 2 weeks ago
Bundled installer scripts. VS Code: install.{sh,ps1}. JetBrains IDEs (incl. Gateway / remote-dev-server): install-jetbrains.{sh,ps1}. Each script detects your OS (Windows / macOS / Ubuntu / WSL2) and is interactive.
| 1 | { |
| 2 | "recommendations": [ |
| 3 | "dsznajder.es7-react-js-snippets", |
| 4 | "planbcoding.vscode-react-refactor", |
| 5 | "bradlc.vscode-tailwindcss", |
| 6 | "ms-vscode.vscode-typescript-next", |
| 7 | "yoavbls.pretty-ts-errors", |
| 8 | "christian-kohler.path-intellisense", |
| 9 | "christian-kohler.npm-intellisense", |
| 10 | "dbaeumer.vscode-eslint", |
weehong / Developer Environment Installer
0 curtidas
0 bifurcações
2 arquivos
Última atividade 3 weeks ago
Interactive developer environment bootstrapper using official upstream downloads and signed OS-vendor packages.
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # ======================================================= |
| 4 | # 1. BOOTSTRAPPER: PREFER ZSH, FALLBACK TO BASH |
| 5 | # ======================================================= |
| 6 | if [ -z "${_PREFER_ZSH_BOOTSTRAPPED:-}" ]; then |
| 7 | export _PREFER_ZSH_BOOTSTRAPPED=1 |
| 8 | |
| 9 | # Only attempt to re-execute if $0 is an actual file on disk. |
| 10 | # This prevents the 'can't open input file' error when running |
weehong / .NET Scaffold Script
0 curtidas
0 bifurcações
7 arquivos
Última atividade 1 month ago
Scaffold scripts and guide for creating .NET projects, including clean architecture boilerplate and shell/PowerShell helpers.
System Engine Hooks, Rules, and Instruction Files
Different AI coding tools expose different customization mechanisms. Some are real lifecycle hooks that execute commands at fixed points in the runtime. Others are persistent instruction files that are added to the model context as guidance. These should not be described as the same mechanism.
A. Claude Code CLI Hook (.claude/settings.json)
Claude Code supports lifecycle hooks in .claude/settings.json, including UserPromptSubmit. This event runs after the user submits a prompt and before Claude processes it.
A UserPromptSubmit command hook can:
Próximo
Anterior