Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

ai-pro爱亲

Agent Skill

ai-pro 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

396

周安装

16

GitHub Stars

9

下载量

124
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-pro(爱亲)
来源仓库:https://github.com/yuniorglez/gemini-elite-core
仓库路径:skills/ai-pro
安装命令:
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill ai-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill ai-pro

简介

AI-PRO 是面向现代软件生态的专业级系统协调器,桥接前沿 AI 能力与企业基础设施。

  • 适用于高并发场景下的身份认证、支付集成与 monorepo 工程化管理等复杂任务编排。
  • 支持 GPT-5 与 o3-deep-research 等新一代模型的深度整合与安全沙箱隔离。
  • 使用前需评估团队技术栈成熟度,确保 Auth.js v5 与 Stripe v13 等组件版本兼容。
  • 建议建立严格的权限分级机制,防止自动化代理越权访问核心业务系统资源。

SKILL.md

AI-PRO: Professional AI & System Orchestrator

Overview

AI-PRO is the definitive skill for managing modern, high-performance software ecosystems in 2026. It bridges the gap between raw AI capabilities (GPT-5, o3-deep-research) and enterprise-grade infrastructure (Auth.js v5, Stripe v13, Bun/pnpm Monorepos).

This skill is designed for the Senior AI Engineer who needs to orchestrate autonomous agents while maintaining strict security, performance, and architectural integrity.

Core Pillars of the 2026 Stack

1. The AI Frontier (GPT-5 & Autonomous Agents)

The paradigm has shifted from "Chat" to "Agents". We utilize the GPT-5 family for complex tool-use and o3-deep-research for iterative discovery missions.

2. Identity & Security (Auth.js v5)

Security in 2026 is "Edge-First". Auth.js v5 provides 25% faster validation and native Edge support using the standardized AUTH_ prefix.

3. Financial Infrastructure (Stripe v13+)

Modern API consumption leverages auto-paginating SDKs and deeply expanded objects to reduce network overhead and boilerplate.

4. Codebase Intelligence (Architect & Archive)

Managing massive codebases requires "Context Packing" with Repomix and high-performance search via git grep and indexed symbol maps.


Strategic Implementation Guide

The "Autonomous Orchestrator" Pattern

To build a system that can self-heal and evolve, follow the O.R.C.A. (Observe, Reason, Check, Act) pattern.

Example: Self-Healing API Integration

import { gpt5 } from '@openai/provider';
import { generateText } from 'ai-sdk';
import { auth } from '@/auth';
import Stripe from 'stripe';

/**
 * AI-PRO Orchestrator: Automatically fixes API version mismatches
 */
async function selfHealingPayment(customerId: string) {
  const session = await auth(); // Auth.js v5 Edge-First
  const stripe = new Stripe(process.env.AUTH_STRIPE_SECRET!, {
    apiVersion: '2025-10-01',
  });

  try {
    const customer = await stripe.customers.retrieve(customerId, {
      expand: ['subscriptions.data.default_payment_method'],
    });
    // Business logic...
  } catch (error) {
    // If error is related to API versioning or schema change
    const diagnostic = await generateText({
      model: gpt5('gpt-5-pro'),
      prompt: `Analyze this Stripe error: ${error.message}.
               Context: We are using SDK v13.
               Suggest a fix or retry strategy.`,
    });

    console.log(`AI-PRO Diagnostic: ${diagnostic.text}`);
    // Implement auto-retry or fallback logic here
  }
}

Advanced Search & Context Management

Ripgrep Masterclass

When searching through million-line archives, speed is safety.

CommandUse Case
rg -l "pattern"List ONLY filenames containing the pattern.
rg -C 5 "pattern"Show 5 lines of context around the match.
rg -t typescript "pattern"Search ONLY in TypeScript files.
rg --stats "pattern"Show performance stats (count, time).

Repomix Strategy

Before starting a complex refactor, generate a "Codebase Map":

bun x repomix --include "src/core/**,src/types/**" --output .ai-context/core-map.xml

The "Do Not" List (Anti-Patterns to Avoid)

❌ AI & Agents

  • Do NOT allow an agent to commit to main without a strict-auditor check.
  • Do NOT hardcode model names; use a registry or environment variables to allow for easy upgrades (e.g., GPT-5 -> GPT-6).
  • Do NOT use agents for deterministic tasks (like regex) where a simple script suffices.

❌ Authentication

  • Do NOT use process.env.NEXTAUTH_SECRET; v5 expects AUTH_SECRET.
  • Do NOT store PII (Personally Identifiable Information) in JWTs; keep tokens lean for Edge performance.
  • Do NOT ignore the AUTH_TRUST_HOST requirement in non-Vercel environments.

❌ API & SDKs

  • Do NOT manually handle Stripe pagination using starting_after; it is error-prone. Use for await...of.
  • Do NOT neglect webhook signature verification; it is the #1 vector for payment fraud.

❌ Architecture

  • Do NOT create "Monster Monorepos" without clear package boundaries. Use pnpm-workspace.yaml.
  • Do NOT include node_modules in your repomix packs; it will blow your token budget.

Evolution Roadmap (2026-2027)

Q1 2026: The o3 Stabilization

  • Deep integration of o3-deep-research into CI/CD pipelines for autonomous bug hunting.
  • Standardization of the AUTH_ prefix across all Squadds projects.

Q2 2026: GPT-5 Multi-Modal Agents

  • Native visual auditing: Agents that "see" the UI to find CSS regressions.
  • Real-time audio debugging: Voice-driven system diagnostics.

H2 2026: The GPT-6 Horizon

  • Early testing of "Infinite Context" models.
  • Transition from Monorepos to "Micro-Repos" managed by a Centralized AI Architect.

Quick Reference Commands

Identity Setup (Auth.js v5)

# Generate AUTH_SECRET
openssl rand -base64 32

Dependency Sync (Bun + pnpm)

# Reinstall all workspace deps with Bun's speed
bun install --frozen-lockfile

Context Packing

# Pack core logic for AI review
bun x repomix --style markdown --output review.md

Large Scale Search

# Find all sensitive keys across the archive
git grep -E "(SECRET|KEY|PASSWORD)" -- ':!*.lockb'

Troubleshooting

Issue: "Missing AUTH_SECRET"

  • Cause: Auth.js v5 requires this for encryption in production.
  • Fix: Add AUTH_SECRET to your .env or CI secrets.

Issue: "Stripe SDK Pagination Error"

  • Cause: Trying to access .data on an async iterator.
  • Fix: Use for await (const item of stripe.customers.list()) directly.

Issue: "Repomix Token Overflow"

  • Cause: Packing too many files or large assets.
  • Fix: Use --ignore or create a specific repomix.config.json for the module.

Metadata

  • Version: 2.0.0 (January 2026 Refactor)
  • Primary Agent: AI-PRO
  • Sub-Agents: auth-expert, api-pro, architect-pro, archive-searcher
  • Compatibility: Next.js 16.1+, React 19.2+, Stripe 13.5+, Bun 1.2+

*Updated: January 22, 2026 - 15:20*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.57%
按下载量换算45

Claude

29.87%
按下载量换算37

Cursor

19.09%
按下载量换算24

Gemini CLI

9.96%
按下载量换算12

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills