Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
3951 r3f-textures enzed/r3f-skills
React Three Fiber Textures Quick Start import { Canvas } from '@react-three/fiber' import { useTexture } from '@react-three/drei' function TexturedBox() { const texture = useTexture('/textures/wood.jpg') return ( <mesh> <boxGeometry /> <meshStandardMaterial map={texture} /> </mesh> ) } export default function App() { return ( <Canvas> <ambientLight /> <TexturedBox /> </Canvas> ) } useTexture Hook (Drei) The recommended way to load textures i...
220
3952 metadata-optimization eronred/aso-skills
Metadata Optimization You are an expert ASO copywriter who specializes in crafting App Store metadata that maximizes both search visibility and conversion rate. Your goal is to write metadata that ranks for target keywords while compelling users to download. Initial Assessment Check for app-marketing-context.md — read it for positioning and target audience Ask for the App ID (to see current metadata) Ask for target keywords (or suggest running keyword-research first) Ask for platform (iOS / Andr...
220
3953 mcp integration davila7/claude-code-templates
MCP Integration for Claude Code Plugins Overview Model Context Protocol (MCP) enables Claude Code plugins to integrate with external services and APIs by providing structured tool access. Use MCP integration to expose external service capabilities as tools within Claude Code. Key capabilities: Connect to external services (databases, APIs, file systems) Provide 10+ related tools from a single service Handle OAuth and complex authentication flows Bundle MCP servers with plugins for automatic setu...
220
3954 creative-intelligence aj-geddes/claude-code-bmad-skills
Creative Intelligence Role: Creative Intelligence System specialist Function: Facilitate structured brainstorming, conduct research, generate creative solutions Responsibilities Lead brainstorming sessions using proven techniques Conduct market and competitive research Generate creative solutions to complex problems Facilitate idea generation and refinement Document research findings and insights Support innovation across all BMAD phases Core Principles Structured Creativity - Use proven fram...
220
3955 revenuecat rawveg/skillsforge-marketplace
RevenueCat Query RevenueCat metrics and search documentation. Config Set RC_API_KEY environment variable, which should be a v2 secret API key. Context Query the RevenueCat API ( GET /projects ) to get information about the project you have access to. Your RevenueCat API key allows access to a single project. Use the project ID in subsequent API calls. API Access { baseDir } /scripts/rc-api.sh < endpoint > Example: {baseDir}/scripts/rc-api.sh /projects to list projects. Local API Reference Start ...
220
3956 ua-campaign eronred/aso-skills
User Acquisition Campaigns You are an expert in mobile app user acquisition across all major ad platforms. Your goal is to help the user plan, launch, and optimize paid campaigns that drive profitable installs. Initial Assessment Check for app-marketing-context.md — read it for context Ask for monthly UA budget (this determines channel strategy) Ask for target CPI (cost per install) or target ROAS Ask for current LTV (lifetime value per user) Ask for target audience (demographics, interests, beh...
220
3957 alicloud-ai-entry-modelstudio cinience/alicloud-skills
Category: task Alibaba Cloud Model Studio Entry (Routing) Route requests to existing local skills to avoid duplicating model/parameter details. Prerequisites Install SDK (virtual environment recommended to avoid PEP 668 restrictions): python3 -m venv .venv . .venv/bin/activate python -m pip install dashscope Configure DASHSCOPE_API_KEY (environment variable preferred; or dashscope_api_key in ~/.alibabacloud/credentials ). Routing Table (currently supported in this repo) Need Target skill Text-to...
220
3958 memory-manager learnwy/skills
Memory Manager Personal Use Only - This skill is configured for wangyang.learnwy's personal AI memory management. Persistent memory system for AI assistants. Load this skill at the start of every session. ⚠️ CRITICAL: File Operation Rules Due to AI IDE sandbox restrictions, NEVER use Write/SearchReplace tools to modify memory files. MUST use RunCommand tool to execute bash scripts: RunCommand: bash {skill_dir}/scripts/write-memory.sh SOUL.md "content" RunCommand: bash {skill_dir}/scripts/append-...
220
3959 htmx mindrally/skills
HTMX Development You are an expert in HTMX for building dynamic web applications with minimal JavaScript. Core Principles Write concise, clear, and technical responses with precise HTMX examples Leverage HTMX's interactivity capabilities without heavy JavaScript dependencies Prioritize maintainability and readable code structure Return only necessary HTML snippets from the server HTMX Usage Guidelines Request Attributes hx-get - Make GET request to URL hx-post - Make POST request to URL hx-put...
220
3960 readme boshu2/agentops
/readme — Gold-Standard README Generation Purpose: Generate a README that converts skimmers into users and satisfies deep readers — then validate it with a council. YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Quick Start /readme Interview + generate + validate (new README) /readme --rewrite Rewrite existing README with same patterns /readme --validate Council-validate an existing README without rewriting The Patterns These are non-negotiable. Every README this skill produces foll...
220
3961 mongodb-query-and-index-optimize romiluz13/mongodb-agent-skills
MongoDB Query and Index Optimization Query patterns and indexing strategies for MongoDB, maintained by MongoDB. Contains 42 rules across 5 categories , prioritized by impact. Indexes are the primary tool for query performance—most slow queries are missing an appropriate index. When to Apply Reference these guidelines when: Writing new MongoDB queries or aggregations Creating or reviewing indexes for collections Debugging slow queries (COLLSCAN, high execution time) Reviewing explain() output See...
220
3962 framer-motion mindrally/skills
Framer Motion / Motion Animation Guidelines You are an expert in Framer Motion (now Motion), React, and TypeScript. Follow these guidelines when creating animations. Core Principles Import from the Correct Package Use import { motion } from "motion/react" for React projects (not "framer-motion" - this is outdated) The library was renamed from Framer Motion to Motion Always use the latest Motion API Performance-First Approach Animate transform properties (x, y, scale, rotate) and opacity for be...
220
3963 agent-ui inference-sh/skills
Agent Component Batteries-included agent component from ui.inference.sh . Quick Start Install the agent component npx shadcn@latest add https://ui.inference.sh/r/agent.json Add the SDK for the proxy route npm install @inferencesh/sdk Setup 1. API Proxy Route (Next.js) // app/api/inference/proxy/route.ts import { route } from '@inferencesh/sdk/proxy/nextjs' ; export const { GET , POST , PUT } = route ; 2. Environment Variable .env.local INFERENCE_API_KEY = inf_ .. . 3. Use the Component import...
219
3964 r3f-loaders enzed/r3f-skills
React Three Fiber Loaders Quick Start import { Canvas } from '@react-three/fiber' import { useGLTF, OrbitControls } from '@react-three/drei' import { Suspense } from 'react' function Model() { const { scene } = useGLTF('/models/robot.glb') return <primitive object={scene} /> } export default function App() { return ( <Canvas> <ambientLight /> <Suspense fallback={null}> <Model /> </Suspense> <OrbitControls /> </Canvas> ) } useGLTF (Drei) The rec...
219
3965 alicloud-security-content-moderation-green cinience/alicloud-skills
Category: service Content Moderation (Green) Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for Content Moderation. Workflow Confirm region, resource identifiers, and desired action. Discover API list and required parameters (see references). Call API with SDK or OpenAPI Explorer. Verify results with describe/list APIs. AccessKey priority (must follow) Environment variables: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID Regio...
219
3966 alicloud-compute-fc-serverless-devs cinience/alicloud-skills
Category: tool Function Compute (FC 3.0) Serverless Devs Goals Install and validate Serverless Devs. Configure credentials, initialize example project, deploy, invoke, and remove. Provide CLI flow with Python runtime example. Quick Start Flow Install Node.js (14+) and npm. Install and validate Serverless Devs. Configure credentials via guided setup. Initialize example project and enter directory. Deploy, invoke, and optionally remove. Install Serverless Devs (npm) Global install (requires sudo):...
219
3967 python-executor inference-sh/skills
Python Code Executor Execute Python code in a safe, sandboxed environment with 100+ pre-installed libraries. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Run Python code infsh app run infsh/python-executor --input '{ "code": "import pandas as pd\nprint(pd.__version__)" }' App Details Property Value App ID infsh/python-executor Environment Python 3.10, CPU-only RAM 8GB (default) / 16GB (high_memory) Tim...
219
3968 alicloud-media-video-translation cinience/alicloud-skills
Category: service IMS Video Translation (OpenAPI) Submit video translation jobs via OpenAPI and poll results for subtitle-level, voice-level, and face-level processing. Prerequisites Prepare OSS input/output URIs (recommended to match API region). Configure AK: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID ( ALICLOUD_REGION_ID can be used as the default region; if unset, choose the most reasonable region and ask when unclear). Workflow Prepare source file and output OS...
219
3969 remotion-render inference-sh/skills
Remotion Render Render videos from React/Remotion component code via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Render a simple animation infsh app run infsh/remotion-render --input '{ "code": "import { useCurrentFrame, AbsoluteFill } from \"remotion\"; export default function Main() { const frame = useCurrentFrame(); return <AbsoluteFill style={{backgroundColor: \"000\", display: \...
219
3970 skill-creator dalestudy/skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
219
3971 security-compliance-audit aj-geddes/useful-ai-prompts
Security Compliance Audit Overview Systematic evaluation of security controls, policies, and procedures to ensure compliance with industry standards and regulatory requirements. When to Use Annual compliance audits Pre-certification assessments Regulatory compliance validation Security posture evaluation Third-party audits Gap analysis Implementation Examples 1. Automated Compliance Checker compliance_auditor.py from dataclasses import dataclass, field from typing import List, Dict from enum ...
219
3972 code-reviewer alirezarezvani/claude-skills
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
219
3973 firecrawl-scraper sickn33/antigravity-awesome-skills
Firecrawl Web Scraper Skill Status : Production Ready Last Updated : 2026-01-20 Official Docs : https://docs.firecrawl.dev API Version : v2 SDK Versions : firecrawl-py 4.13.0+, @mendable/firecrawl-js 4.11.1+ What is Firecrawl? Firecrawl is a Web Data API for AI that turns websites into LLM-ready markdown or structured data. It handles: JavaScript rendering - Executes client-side JavaScript to capture dynamic content Anti-bot bypass - Gets past CAPTCHA and bot detection systems Format conversion ...
219
3974 app-marketing-context eronred/aso-skills
App Marketing Context You are an expert mobile app marketing strategist. Your goal is to help the user create a comprehensive context document that all other ASO and app marketing skills will reference. Initial Assessment Check if app-marketing-context.md exists in the project root or .claude/ directory. If it exists: Read it and ask if the user wants to update any section. If it doesn't exist: Walk through each section below, asking questions to build the document. Context Document Structure Cr...
219
3975 alicloud-ai-image-zimage-turbo cinience/alicloud-skills
Category: provider Model Studio Z-Image Turbo Use Z-Image Turbo for fast text-to-image generation via the DashScope multimodal-generation API. Critical model name Use ONLY this exact model string: z-image-turbo Prerequisites Set DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials (env takes precedence). Choose region endpoint (Beijing or Singapore). If unsure, pick the most reasonable region or ask the user. Normalized interface (image.generate) Request...
219
3976 alicloud-database-analyticdb-mysql cinience/alicloud-skills
Category: service AnalyticDB for MySQL Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for AnalyticDB for MySQL. Workflow Confirm region, resource identifiers, and desired action. Discover API list and required parameters (see references). Call API with SDK or OpenAPI Explorer. Verify results with describe/list APIs. AccessKey priority (must follow) Environment variables: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID Region po...
219
3977 gpd-submission-health rudrankriyam/app-store-connect-cli-skills
GPD Submission Health Use this skill to reduce Play Console submission failures and validate readiness. Preconditions Auth configured and package name resolved. Build uploaded and available for the target track. Store listing metadata and assets updated. Pre-submission checklist 1. Validate edit (if using edit lifecycle) gpd publish edit validate EDIT_ID --package com.example.app 2. Confirm release status gpd publish status --package com.example.app --track production Check: Release status is ex...
219
3978 threejs-game natea/fitfinder
Three.js Game Development Skill Comprehensive assistance with Three.js game development using WebGL, covering 3D rendering, game mechanics, physics, animations, and interactive browser-based games. When to Use This Skill Activate this skill when: Building 3D web games with Three.js Implementing game mechanics (player movement, collisions, scoring) Setting up cameras, lighting, and scene management Loading 3D models (GLTF, OBJ, FBX) Handling user input (keyboard, mouse, touch, gamepad) Creati...
219
3979 sf-testing jaganpro/sf-skills
Expert testing engineer specializing in Apex test execution, code coverage analysis, mock frameworks, and agentic test-fix loops. Execute tests, analyze failures, and automatically fix issues. Core Responsibilities - Test Execution: Run Apex tests via `sf apex run test` with coverage analysis - Coverage Analysis: Parse coverage reports, identify untested code paths - Failure Analysis: Parse test failures, identify root causes, suggest fixes - Agentic Test-Fix Loop: Automatically fix failin...
219
3980 alicloud-compute-fc-agentrun cinience/alicloud-skills
Category: service Function Compute AgentRun (OpenAPI) Use AgentRun OpenAPI (ROA) to manage runtimes, sandboxes, model services, memory, and credentials. Prerequisites AccessKey via RAM user (least privilege). Select the correct regional endpoint (see references/endpoints.md ). If unsure, choose the most reasonable region for the task or ask the user. Use OpenAPI Explorer or official SDK to avoid manual signing (ROA requires SignatureV1). Workflow Choose region endpoint ( agentrun.cn-<region>.ali...
219
3981 keyword-research eronred/aso-skills
Keyword Research This skill helps you discover, analyze, and prioritize keywords for SEO and GEO content strategies. It identifies high-value opportunities based on search volume, competition, intent, and business relevance. When to Use This Skill Starting a new content strategy or campaign Expanding into new topics or markets Finding keywords for a specific product or service Identifying long-tail keyword opportunities Understanding search intent for your industry Planning content calendars R...
219
3982 datadog-cli softaworks/agent-toolkit
Datadog CLI A CLI tool for AI agents to debug and triage using Datadog logs and metrics. Required Reading You MUST read the relevant reference docs before using any command: Log Commands Metrics Query Syntax Workflows Dashboards Setup Environment Variables (Required) export DD_API_KEY = "your-api-key" export DD_APP_KEY = "your-app-key" Get keys from: https://app.datadoghq.com/organization-settings/api-keys Running the CLI npx @leoflores/datadog-cli < command > For non-US Datadog sites, use --sit...
219
3983 redbookskills white0dew/xiaohongshuskills
Post-to-xhs 你是“小红书发布助手”。目标是在用户确认后,调用本 Skill 的脚本完成发布。 输入判断 优先按以下顺序判断: 用户明确要求"测试浏览器 / 启动浏览器 / 检查登录 / 只打开不发布":进入测试浏览器流程。 用户要求“搜索笔记 / 找内容 / 查看某篇笔记详情 / 查看内容数据表 / 给帖子评论 / 查看评论和@通知”:进入内容检索与互动流程( search-feeds / get-feed-detail / post-comment-to-feed / get-notification-mentions / content-data )。 用户已提供 标题 + 正文 + 视频(本地路径或URL) :直接进入视频发布流程。 用户已提供 标题 + 正文 + 图片(本地路径或URL) :直接进入图文发布流程。 用户只提供网页 URL:先提取网页内容与图片/视频,再给出可发布草稿,等待用户确认。 信息不全:先补齐缺失信息,不要直接发布。 必做约束 发布前必须让用户确认最终标题、正文和图片/视频。 图文发布时,没有图片不得发布(小红书发图文必须有图片)。 视频发布时...
219
3984 writing-skills davila7/claude-code-templates
Writing Skills Overview Writing skills IS Test-Driven Development applied to process documentation. Personal skills live in agent-specific directories ( ~/.claude/skills for Claude Code, ~/.agents/skills/ for Codex) You write test cases (pressure scenarios with subagents), watch them fail (baseline behavior), write the skill (documentation), watch tests pass (agents comply), and refactor (close loopholes). Core principle: If you didn't watch an agent fail without the skill, you don't know if the...
219
3985 alicloud-ai-search-milvus cinience/alicloud-skills
Category: provider AliCloud Milvus (Serverless) via PyMilvus This skill uses standard PyMilvus APIs to connect to AliCloud Milvus and run vector search. Prerequisites Install SDK (recommended in a venv to avoid PEP 668 limits): python3 -m venv .venv . .venv/bin/activate python -m pip install --upgrade pymilvus Provide connection via environment variables: MILVUS_URI (e.g. http://<host>:19530 ) MILVUS_TOKEN ( <username>:<password> ) MILVUS_DB (default: default ) Quickstart (Python) import os from...
219
3986 tiktok-automation sickn33/antigravity-awesome-skills
TikTok Automation via Rube MCP Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active TikTok connection via RUBE_MANAGE_CONNECTIONS with toolkit tiktok Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify ...
219
3987 review-management eronred/aso-skills
Review Management You are an expert in app review strategy and reputation management. Your goal is to help the user turn reviews into a growth lever — improving ratings, gaining insights, and building user trust. Initial Assessment Check for app-marketing-context.md — read it for context Ask for the App ID (to fetch current reviews) Ask for target country (default: US) Ask about their current rating and trend (improving or declining?) Ask if they currently respond to reviews Review Analysis Fram...
219
3988 pptx-manipulation claude-office-skills/skills
PPTX Manipulation Skill Overview This skill enables programmatic creation, editing, and manipulation of Microsoft PowerPoint (.pptx) presentations using the python-pptx library. Create professional slides with text, shapes, images, charts, and tables without manual editing. How to Use Describe the presentation you want to create or modify Provide content, data, or images to include I'll generate python-pptx code and execute it Example prompts: "Create a 10-slide pitch deck from this outline" "Ad...
219
3989 skill-creator bytedance/deer-flow
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
219
3990 prompt-caching davila7/claude-code-templates
Prompt Caching You're a caching specialist who has reduced LLM costs by 90% through strategic caching. You've implemented systems that cache at multiple levels: prompt prefixes, full responses, and semantic similarity matches. You understand that LLM caching is different from traditional caching—prompts have prefixes that can be cached, responses vary with temperature, and semantic similarity often matters more than exact match. Your core principles: Cache at the right level—prefix, response...
218
3991 alicloud-ai-search-dashvector cinience/alicloud-skills
Category: provider DashVector Vector Search Use DashVector to manage collections and perform vector similarity search with optional filters and sparse vectors. Prerequisites Install SDK (recommended in a venv to avoid PEP 668 limits): python3 -m venv .venv . .venv/bin/activate python -m pip install dashvector Provide credentials and endpoint via environment variables: DASHVECTOR_API_KEY DASHVECTOR_ENDPOINT (cluster endpoint) Normalized operations Create collection name (str) dimension (int) metr...
218
3992 frontend-design bytedance/deer-flow
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
218
3993 trader-analysis agentmc15/polymarket-trader
Trader Analysis Skill Tracking Trader Activity On-Chain Data from web3 import Web3 import httpx from typing import AsyncIterator CTF_EXCHANGE = "0x4bFb41d5B3570DeFd03C39a9A4D8dE6Bd8B8982E" class TraderTracker: def __init__(self, polygon_rpc: str): self.w3 = Web3(Web3.HTTPProvider(polygon_rpc)) self.exchange = self.w3.eth.contract( address=CTF_EXCHANGE, abi=CTF_EXCHANGE_ABI ) async def get_trader_trades( self, address:...
218
3994 gpd-release-flow rudrankriyam/app-store-connect-cli-skills
Release flow (Google Play) Use this skill when you need to upload a build, publish to a track, or manage rollout. Preconditions Ensure credentials are set ( GPD_SERVICE_ACCOUNT_KEY ). Use a new version code for each upload. Always pass --package explicitly. Preferred end-to-end commands Upload and release to a track gpd publish upload app.aab --package com.example.app gpd publish release --package com.example.app --track internal --status completed Promote between tracks gpd publish promote --pa...
218
3995 gemini davila7/claude-code-templates
Gemini Skill Guide When to Use Gemini WHEN ASKED TO BE ACTIVATED Code Review : Comprehensive code reviews across multiple files Plan Review : Analyzing architectural plans, technical specifications, or project roadmaps Big Context Processing : Tasks requiring >200k tokens of context (entire codebases, documentation sets) Multi-file Analysis : Understanding relationships and patterns across many files ⚠️ Critical: Background/Non-Interactive Mode Warning NEVER use --approval-mode default in backgr...
218
3996 make-plan thedotmack/claude-mem
Make Plan You are an ORCHESTRATOR. Create an LLM-friendly plan in phases that can be executed consecutively in new chat contexts. Delegation Model Use subagents for fact gathering and extraction (docs, examples, signatures, grep results). Keep synthesis and plan authoring with the orchestrator (phase boundaries, task framing, final wording). If a subagent report is incomplete or lacks evidence, re-check with targeted reads/greps before finalizing. Subagent Reporting Contract (MANDATORY) Each sub...
218
3997 subagent-driven-development davila7/claude-code-templates
Subagent-Driven Development Execute plan by dispatching fresh subagent per task, with two-stage review after each: spec compliance review first, then code quality review. Why subagents: You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for...
218
3998 apollo-router apollographql/skills
Apollo Router Config Generator Apollo Router is a high-performance graph router written in Rust for running Apollo Federation 2 supergraphs. It sits in front of your subgraphs and handles query planning, execution, and response composition. This skill generates version-correct configuration. Router v1 and v2 have incompatible config schemas in several critical sections (CORS, JWT auth, connectors). Always determine the target version before generating any config. Step 1: Version Selection Ask th...
218
3999 ssh openhands/skills
SSH Skill Use SSH for secure remote access, file transfers, and tunneling. Basic Connection Connect to server: ssh user@hostname Connect on specific port: ssh -p 2222 user@hostname Connect with specific identity: ssh -i ~/.ssh/my_key user@hostname SSH Config Config file location: ~/.ssh/config Example config entry: Host myserver HostName 192.168.1.100 User deploy Port 22 IdentityFile ~/.ssh/myserver_key ForwardAgent yes Then connect with just: ssh myserver ...
218
4000 inject boshu2/agentops
DEPRECATED (removal target: v3.0.0) — Use ao lookup --query "topic" for on-demand learnings retrieval, or see .agents/AGENTS.md for knowledge navigation. This skill and the ao inject CLI command still work but are no longer called from hooks or other skills. Inject Skill On-demand knowledge retrieval. Not run automatically at startup (since ag-8km). Inject relevant prior knowledge into the current session. How It Works In the default manual startup mode, MEMORY.md is auto-loaded by Claude Code a...
218