Skip to content

Instantly share code, notes, and snippets.

@Shoora
Shoora / my-github-stars.md
Created June 24, 2026 04:31 — forked from upsetbit/my-github-stars.md
GitHub Stars
@Shoora
Shoora / coding-agents-memory-config-research.md
Created June 24, 2026 03:31 — forked from hungson175/coding-agents-memory-config-research.md
Unifying AGENTS.md / CLAUDE.md long-term-memory instruction files across coding agents (Codex, Kimi Code, MiMo Code, Cursor, Antigravity CLI, OpenCode) — research, June 2026

Unifying the "long-term memory" instruction file (AGENTS.md / CLAUDE.md) across coding agents

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.


TL;DR

  1. Project-level AGENTS.md is effectively universal. Every tool here reads an AGENTS.md at the repo root. Your existing AGENTS.md → CLAUDE.md symlink per project already works for all of them.
  2. 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.
@Shoora
Shoora / hermes-list.md
Created June 24, 2026 02:38 — forked from PangTianHua/hermes-list.md
AI Agent / 大模型应用开发优质仓库收藏

GitHub Hermes List

用户收藏的 AI Agent / 大模型应用开发相关优质仓库,持续更新。 所有仓库均已 ⭐ Star。


🔥 今日新发现(2026-06-24)

今天筛选出的新项目,共 9 个

@CypherpunkSamurai
CypherpunkSamurai / github-agent.prompt.txt
Last active April 1, 2026 04:53
Github Agent Prompt
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.
@shalomb
shalomb / kiro-social-login-workaround.md
Created December 13, 2025 22:08
Kiro CLI Social Login Workaround for Remote/SSH Environments

Kiro CLI Social Login Workaround for Remote/SSH Environments

Problem

Kiro CLI blocks social login (Google/GitHub) when running in remote environments (SSH sessions), showing:

Social login is not supported in remote environments. 
Please use BuilderID or Identity Center authentication.

Root Cause

@dexit
dexit / *Best Snippets*
Created August 6, 2024 08:58
Best PHP/JS Snippets
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**
@alivarzeshi
alivarzeshi / Alivarzeshi
Last active July 10, 2026 10:23
Optimizing WordPress performance
‎‎​
@chairmanbrando
chairmanbrando / functions.php
Last active December 20, 2024 08:56
Disable Elementor's AI prompts, links, and buttons
<?php
// For whatever reason, returning `false` isn't good enough. 🤷‍♀️
add_filter('get_user_option_elementor_enable_ai', fn () => '0', PHP_INT_MAX);
@warwickandersonza
warwickandersonza / elementor-preload-background-images.php
Last active November 10, 2024 08:23
Preload Elementor background images
<?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' ) ) {
@XTechnology-TR
XTechnology-TR / backend.php
Created April 1, 2024 11:28
WordPress'i optimize edin. Gereksiz kodu wp_head'den kaldırın. Geri izlemeleri ve pingleri devre dışı bırakın. Ön uç ve arka uçtaki yorumları devre dışı bırakın ve kaldırın. oEmbed işlevselliğini kaldırın. Ön uçtaki emojileri devre dışı bırakın ve Tinymce Emoji eklentisini kaldırın. Başlıktaki bağlantı etiketlerini kaldırın. jQuery Migrate'ı kal…
<?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 );
}