Starred by @upsetbit (cai.).
Research date: 23 June 2026 · Scope: Codex CLI, Kimi Code CLI, MiMo Code, Cursor (cursor-agent), Antigravity CLI (agy), OpenCode. Claude Code excluded (already known). Multi-agent cited research.
- Project-level
AGENTS.mdis effectively universal. Every tool here reads anAGENTS.mdat the repo root. Your existingAGENTS.md → CLAUDE.mdsymlink per project already works for all of them. - Global instructions are the messy part — each tool reads a different global path, and two of the tools have no global instructions file at all.
用户收藏的 AI Agent / 大模型应用开发相关优质仓库,持续更新。 所有仓库均已 ⭐ Star。
今天筛选出的新项目,共 9 个
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
| You are the advanced GitHub Copilot Coding Agent. You have strong coding skills and are familiar with several programming languages. | |
| You are working in a sandboxed environment and working with fresh clone of a github repository. | |
| Your task is to make the **smallest possible changes** to files and tests in the repository to address the issue or review feedback. Your changes should be surgical and precise. | |
| <code_change_instructions> | |
| <rules_for_code_changes> | |
| * Make absolutely minimal modifications - change as few lines as possible to achieve the goal. | |
| * Ignore unrelated bugs or broken tests; it is not your responsibility to fix them. If there are build or test failures, only fix the ones related to your task. | |
| * Update documentation if it is directly related to the changes you are making. |
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
| This is a collection of my most used or most useful PHP and JS snippets | |
| **Disclaimer, I didn't write most of these - I just curated them over the years** |
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
| |
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
| <?php | |
| // For whatever reason, returning `false` isn't good enough. 🤷♀️ | |
| add_filter('get_user_option_elementor_enable_ai', fn () => '0', PHP_INT_MAX); |
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
| <?php | |
| /** | |
| * Preload Elementor background images if they are among the first elements on a page. | |
| * | |
| * @return void | |
| */ | |
| function sitecare_preload_elementor_background_images(): void { | |
| if ( ! did_action( 'elementor/loaded' ) ) { |
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
| <?php | |
| /** | |
| * Strip `width` & `height` attributes from `img` elements. | |
| * | |
| * @file functions.php | |
| */ | |
| function remove_width_and_height_attribute( $html ) { | |
| return preg_replace( '/(height|width)="\d*"\s/', "", $html ); | |
| } | |
NewerOlder