Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

lazy-agent-loader惰性 Agent 加载器

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:lazy-agent-loader(惰性 Agent 加载器)
来源仓库:https://github.com/nguyenthienthanh/aura-frog
仓库路径:skills/lazy-agent-loader
安装命令:
npx skills add nguyenthienthanh/aura-frog --skill "lazy-agent-loader"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add nguyenthienthanh/aura-frog --skill "lazy-agent-loader"

简介

用于快速查找、检索和筛选相关信息。

  • 适合根据关键词或任务场景定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:npx skills add nguyenthienthanh/aura-frog --skill "lazy-agent-loader"。
  • 建议确认权限范围及是否涉及联网或文件读写。

SKILL.md

name
lazy-agent-loader
description
Load agent definitions on-demand to reduce context usage. Only loads full agent when needed.
autoInvoke
false
priority
high
triggers
allowed-tools
Read, Glob

Lazy Agent Loader

Priority: HIGH - Load agents on-demand Version: 1.0.0


Purpose

Reduce token usage by:

  1. Loading only agent summaries initially (~50 tokens each)
  2. Loading full definition only when agent is activated
  3. Caching loaded agents in session state

Agent Index (Summaries Only)

agent_index[24]{id,category,specialty,keywords}:
  mobile-react-native,dev,React Native/Expo mobile,react-native/expo/RN/mobile/ios/android
  mobile-flutter,dev,Flutter/Dart mobile,flutter/dart/bloc/mobile
  web-angular,dev,Angular frontend,angular/ngrx/rxjs/typescript
  web-vuejs,dev,Vue.js frontend,vue/vuejs/pinia/nuxt/composition
  web-reactjs,dev,React frontend,react/reactjs/jsx/hooks/redux
  web-nextjs,dev,Next.js fullstack,next/nextjs/ssr/ssg/app-router
  backend-nodejs,dev,Node.js backend,nodejs/express/nestjs/fastify/api
  backend-python,dev,Python backend,python/django/fastapi/flask/api
  backend-go,dev,Go backend,go/golang/gin/fiber/api
  backend-laravel,dev,Laravel/PHP backend,laravel/php/eloquent/artisan
  database-specialist,dev,Database/SQL,database/schema/query/migration/sql/postgres/mysql
  security-expert,quality,Security auditing,security/vulnerability/audit/owasp/penetration
  qa-automation,quality,Testing/QA,test/testing/coverage/qa/jest/cypress
  ui-designer,quality,UI/UX design,design/ui/ux/layout/figma/style/component
  devops-cicd,ops,DevOps/CI-CD,deploy/docker/kubernetes/ci-cd/pipeline/terraform
  jira-operations,ops,JIRA integration,jira/ticket/issue/sprint/backlog
  confluence-operations,ops,Confluence docs,confluence/wiki/documentation/page
  slack-operations,ops,Slack notifications,slack/notification/channel/message
  voice-operations,ops,Voice/TTS,voice/speak/tts/audio/notification
  smart-agent-detector,infra,Agent detection,detect/agent/select/route
  pm-operations-orchestrator,infra,PM/orchestration,pm/project/orchestrate/manage
  project-detector,infra,Project detection,project/detect/identify/config
  project-config-loader,infra,Config loading,config/load/settings/yaml
  project-context-manager,infra,Context management,context/manage/state/session

Loading Strategy

Initial Load (~1200 tokens)

1. Load this index file (agent_index)
2. DO NOT load individual agent files
3. Use index for agent detection scoring

On Agent Selection (~500-2000 tokens per agent)

1. Agent scores ≥80 (PRIMARY) → Load full definition
2. Agent scores 50-79 (SECONDARY) → Load summary only
3. Agent scores <50 (OPTIONAL) → Don't load

Full Definition Location

agents/[agent-id].md

Loading Commands

Load Single Agent

# Load full agent definition
cat agents/mobile-react-native.md

Load Agent Summary

agent_summary{id,role,focus}:
  mobile-react-native,Senior React Native Developer,Expo/RN mobile apps with TypeScript

Integration with Agent Detector

Step 1: Score agents using agent_index keywords
Step 2: Identify PRIMARY agent(s) with score ≥80
Step 3: Load ONLY PRIMARY agent full definitions
Step 4: For SECONDARY agents, use summary from index

Token Savings

comparison[4]{scenario,without_lazy,with_lazy,savings}:
  Initial load (24 agents),~48000,~1200,97.5%
  Single agent task,~48000,~2700,94.4%
  Dual agent task,~48000,~4200,91.3%
  Full stack (3 agents),~48000,~5700,88.1%

Cache Strategy

Session Cache

Loaded agents are cached in conversation context.
If agent already loaded, skip re-loading.
Track loaded agents: loaded_agents[]: mobile-react-native,qa-automation

Force Reload

User: "reload agent mobile-react-native"
→ Clear cache for agent
→ Re-read full definition

Example Flow

User: "Create a React Native screen for login"

1. Agent Detector scores all agents using keywords from agent_index
   - mobile-react-native: +60 (react-native) +20 (context) = 80 ✅ PRIMARY
   - ui-designer: +35 (screen/login implies UI) → OPTIONAL

2. Lazy Loader activates:
   - Load: agents/mobile-react-native.md (~1500 tokens)
   - Skip: ui-designer (score < 50)

3. Context loaded:
   - Agent index: ~1200 tokens
   - mobile-react-native full: ~1500 tokens
   - Total: ~2700 tokens (vs ~48000 without lazy loading)

Agent Categories

categories[4]{name,count,when_to_load}:
  dev,11,When code/implementation requested
  quality,3,When review/test/design requested
  ops,5,When deploy/integrate/notify requested
  infra,5,Usually auto-loaded by system

Note: This skill is automatically used by agent-detector for optimized loading.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

OpenCode

26.38%
按下载量换算21

Claude Code

22.48%
按下载量换算18

windsurf

17.23%
按下载量换算14

cline

10.75%
按下载量换算8

Codex

8.11%
按下载量换算6

Antigravity

3.32%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills