Skip to content

Instantly share code, notes, and snippets.

@Shoora
Shoora / agy_statusline_guide.md
Created June 24, 2026 05:19 — forked from it3xl/agy_statusline_guide.md
Antigravity CLI Custom Status Line Guide

Antigravity CLI Custom Status Line Guide

This guide explains how to set up a comprehensive custom status line for the Antigravity (agy) CLI. The status line provides real-time information about your current session, including context window usage, daily quota limits, current workspace, git status, and the active model.

Installation: Simply tell Antigravity to install it for you! Just type this into your prompt:

install https://gist.github.com/it3xl/3d7b91d6b8fa3c790fdbcfc0e8d0321b

Preview:

@Shoora
Shoora / agy-mcp-bridge-setup.md
Created June 24, 2026 05:14 — forked from kuchida1981/agy-mcp-bridge-setup.md
agy MCP Bridge セットアップ手順 (Claude Code × Antigravity CLI)

agy MCP Bridge セットアップ手順 (Claude Code × Antigravity CLI)

agy MCP Bridge セットアップ手順

Claude Code から Antigravity CLI (agy) を MCP 経由でサブエージェントとして呼び出すためのセットアップ手順。

背景

Antigravity CLI (agy) は MCP サーバー機能を持たないため、Claude Code から MCP ツールとして呼び出すにはブリッジ層が必要になる。このブリッジは agy を MCP エコシステムに統合するアダプタとして機能し、以下を担う:

AGENTS.md

This file provides guidance to AI coding agents (Claude Code, Cursor, Copilot, Antigravity, etc.) when working with code in this repository.

Repository Overview

A collection of skills for Claude.ai and Claude Code for senior software engineers. Skills are packaged instructions and scripts that extend Claude and your coding agents capabilities.

OpenCode Integration

@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 个

Activating Windows 10 and 11 via Command Line: Step-by-Step Guide 2024

If you're looking for a way to activate Windows 10 or 11 for free, the command line is one of the most effective methods. This approach allows you to activate your operating system using your product key and doesn't require any third-party programs. In this article, we'll walk you through the process.

1. Why Use the Command Line for Windows Activation?

Using the command line for activating Windows allows you to:

  • 🚀 Quickly activate the system without additional interfaces.
  • 🔑 Use an activation key, even if you don't have it.
@Shoora
Shoora / 00_wp-optimizations-security-n-cleanup.md
Created August 22, 2024 18:31 — forked from ApoGouv/00_wp-optimizations-security-n-cleanup.md
WP - Optimizations, Security hardening and Cleanup.

** WP - Optimizations, Security hardening and Cleanup **

Here you can find a a list of WP optimization and cleanup functions and methodology.

1.  .htaccess
  ** Security **
- Disable the server signature
- Disable directory browsing
- Force https to your site.
@Shoora
Shoora / base.txt
Created August 22, 2024 18:08 — forked from hiranthi/base.txt
WP-CLI stuff :)
# Paths: DirectAdmin
# USER: change to correct username
# DOMAIN: change to the correct domainname
# Core stuff
$ wp core version --path=/home/USER/domains/DOMAIN/public_html/
$ wp core download --skip-content --force --version=latest --path=/home/USER/domains/DOMAIN/public_html/
$ wp core update-db --path=/home/USER/domains/DOMAIN/public_html/ --dry-run
$ wp core verify-checksums --path=/home/USER/domains/DOMAIN/public_html/
@Shoora
Shoora / nginx-wordpress.conf
Created May 3, 2024 12:07 — forked from nfsarmento/nginx-wordpress.conf
Harden wordpress security nginx
############ WordPress ####################
# Disable logging for favicon and robots.txt
location = /favicon.ico {
try_files /favicon.ico @empty;
access_log off;
log_not_found off;
expires max;
}