Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

self-improving自我完善

Agent Skill

self-improving 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

186

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add pr-pm/prpm --skill "self-improving"

简介

用于记录任务执行中的错误、用户纠正、经验和能力缺口。

  • 适合让 Agent 在 Codex、Claude 等平台中持续学习优化。
  • 通过 npx 安装,数据存储于本地或指定路径。
  • 需定期导出日志供人工复盘。self-improving 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 自我修正机制未经充分验证,可能存在误判。

SKILL.md

Self-Improving with PRPM

Purpose

Automatically search and install PRPM packages to enhance Claude's capabilities for specific tasks. When working on infrastructure, testing, deployment, or framework-specific work, Claude searches the PRPM registry for relevant expertise and suggests packages to install.

When to Use

Automatically triggers when detecting:

  • Infrastructure keywords: aws, pulumi, terraform, kubernetes, docker, beanstalk
  • Testing keywords: test, playwright, jest, cypress, vitest, e2e
  • Deployment keywords: ci/cd, github-actions, gitlab-ci, deploy, workflow
  • Framework keywords: react, vue, next.js, express, fastify, django

Workflow

1. Task Analysis

Analyze user request for keywords and extract relevant terms.

2. Automatic Search

Choose the right search method:

AI-Assisted Search (for vague/broad queries):

prpm ai-search "natural language query"

Use when user request is:

  • Conceptual or vague (e.g., "help with deployments")
  • Describes a problem, not specific tools
  • Open-ended exploration

Keyword Search (for specific tools/frameworks):

prpm search "<detected keywords>" --limit 5

Use when request mentions:

  • Specific technologies (e.g., "pulumi", "react")
  • Exact tool names
  • Known frameworks

3. Package Suggestion

Present top 3 most relevant packages with:

  • Package name and author
  • Download count
  • Brief description
  • Confidence level (official/featured/community)

4. Installation (with approval)

prpm install <package-name> --as claude

5. Application

Load package knowledge and apply to current task.

Decision Rules

High Confidence (Auto-suggest)

  • ✅ Official packages (@prpm/*)
  • ✅ Featured packages
  • ✅ High downloads (>1,000)
  • ✅ Verified authors

Medium Confidence (Present options)

  • ⚠️ Community packages (<1,000 downloads)
  • ⚠️ Multiple similar packages
  • ⚠️ Tangentially related packages

Low Confidence (Skip)

  • ❌ Unverified packages
  • ❌ Deprecated packages
  • ❌ Zero downloads

Example Interactions

Example 1: Specific Technology (Keyword Search)

User: "Help me build Pulumi + Beanstalk infrastructure"

Analysis:
  Keywords: Pulumi, Beanstalk, infrastructure (specific tools)
  Search: prpm search "pulumi beanstalk infrastructure"
  Found: @prpm/pulumi-infrastructure (Official, 3.2K downloads)
  Confidence: High → Auto-suggest

Response:
"I found an official PRPM package that can help:

📦 @prpm/pulumi-infrastructure (Official, 3.2K downloads)
   - Pulumi TypeScript best practices
   - AWS resource patterns
   - Cost optimization guidelines

Should I install this to enhance my Pulumi knowledge?"

User: "Yes"

Action:
  ✅ Installing: prpm install @prpm/pulumi-infrastructure --as claude
  ✅ Loading knowledge
  ✅ Applying patterns to current task

Example 2: Vague Request (AI-Assisted Search)

User: "I need help with deployments"

Analysis:
  Query: Vague, no specific tools mentioned
  Search: prpm ai-search "help with deployments"
  Found: Multiple relevant packages:
    - @prpm/elastic-beanstalk-deployment (Official, 2.1K downloads)
    - @sanjeed5/github-actions (Community, 892 downloads)
    - @prpm/docker-deployment (Featured, 1.5K downloads)

Response:
"I found several deployment-related packages that might help:

📦 @prpm/elastic-beanstalk-deployment (Official, 2.1K downloads)
   - AWS Elastic Beanstalk deployment patterns

📦 @prpm/docker-deployment (Featured, 1.5K downloads)
   - Docker containerization and deployment

📦 @sanjeed5/github-actions (Community, 892 downloads)
   - GitHub Actions CI/CD workflows

Which deployment platform are you using, or should I install the Elastic Beanstalk one?"

User: "I'm using AWS"

Action:
  ✅ Installing: prpm install @prpm/elastic-beanstalk-deployment --as claude
  ✅ Applying AWS deployment best practices

Search Triggers

Infrastructure Tasks

Keywords: aws, gcp, azure, kubernetes, docker, pulumi, terraform Search: prpm search "infrastructure <cloud> <tool>"

Testing Tasks

Keywords: test, playwright, jest, cypress, vitest, e2e Search: prpm search "testing <framework>"

CI/CD Tasks

Keywords: ci/cd, github-actions, gitlab-ci, deploy, workflow Search: prpm search "deployment <platform>"

Framework Tasks

Keywords: react, vue, angular, next.js, express, django Search: prpm search "<framework> best-practices"

Search Commands

AI-Assisted Search (Semantic Search)

# Natural language queries
prpm ai-search "help me deploy my app to the cloud"

# Problem descriptions
prpm ai-search "I need to improve my code review process"

# Conceptual searches
prpm ai-search "best practices for testing infrastructure"

When to use AI search:

  • User query is vague or open-ended
  • Searching by concept rather than specific tool
  • Exploring what's available for a problem domain
  • User doesn't know exact package names or tools

Package Search (Keyword Search)

# Basic search
prpm search "keyword1 keyword2"

# Subtype filter (rule, agent, skill, slash-command, prompt)
prpm search "react" --subtype rule

# Limit results
prpm search "github actions" --limit 5

# Sort by downloads
prpm search "testing" --sort downloads

When to use keyword search:

  • Specific technology names known (pulumi, react, etc.)
  • Filtering by package subtype needed
  • Need sorting/filtering options
  • Exact match searches

Collection Search

# List all collections
prpm collection list

# Search for collections
prpm collection search "frontend"

# Get collection details
prpm collection info essential-dev-agents

# Install a collection (installs all packages in the collection)
prpm install essential-dev-agents

Note: Collections bundle multiple related packages together. Use collections when you need a complete toolkit for a specific domain (e.g., "startup-mvp", "security-review-agents", "essential-dev-agents").

Best Practices

  1. Be Proactive: Search before starting complex tasks
  2. Verify Quality: Check download counts and official status
  3. Ask Permission: Always get user approval before installing
  4. Apply Knowledge: Immediately use installed package patterns
  5. Track Helpfulness: Note which packages were useful

Meta-Dogfooding

Recognize packages PRPM used to build itself:

  • @prpm/pulumi-infrastructure → PRPM's own infrastructure (74% cost savings)
  • @sanjeed5/github-actions → PRPM's workflow validation
  • Testing packages → PRPM's E2E test patterns

Benefit: Users get the same expertise that built PRPM.

Privacy

  • ✅ All searches are local
  • ✅ No data sent to PRPM for searches
  • ✅ Download tracking only on install
  • ✅ No personal data collected

Remember: Self-improvement through package discovery makes Claude more capable for each specific task domain.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

28.56%
按下载量换算19

OpenCode

20.8%
按下载量换算14

Codex

16.72%
按下载量换算11

Claude Code

12%
按下载量换算8

Antigravity

7.25%
按下载量换算5

Gemini CLI

3.18%
按下载量换算2

安全审计

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

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills