基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oyi77/1ai-skills --skill research-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Android and mobile application security testing — emulators, rooting, traffic interception, dynamic instrumentation. Use when testing mobile apps for vulnerabilities, reversing APKs, or bypassing security controls on Android.
Self-reflection + Self-criticism + Auto-learning from corrections + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when working with self improving.
Plan and execute a comprehensive red team engagement covering reconnaissance through post-exploitation using MITRE ATT&CK-aligned TTPs to evaluate an organization's detection and response capabilities. Use when working with conducting full scope red team engagement.
| name | research-agent |
| description | Use when investigating topics deeply with cross-referenced sources and producing evidence-backed findings. |
| domain | agents |
| author | oyi77 |
| license | Apache-2.0 |
| subdomain | ai-agents |
| tags | ["agent","ai-agent","automation","research","autonomous"] |
| version | 1.0.0 |
Quick Reference — see parent for full agent ecosystem.
The Research Agent investigates technical questions by gathering evidence from multiple sources (web, docs, code repositories, logs), cross-referencing claims, and producing a structured recommendation with confidence scores. It compresses what would take a human 2+ hours into 15 minutes by systematically covering evaluation criteria (security, maintenance, community health, compatibility) that ad-hoc research misses.
# Refer to the skill's usage section for specific commands
# Adapt these to your workflow
"""Minimal research agent pattern — evaluate a library."""
import json, sys, subprocess
from datetime import datetime
def research_library(name: str, criteria: list[str]) -> dict:
sources = {}
# Gather from multiple sources (simplified — real agent fetches live data)
sources["github"] = {"stars": "28k", "last_commit": "2025-11-01", "issues": 42}
sources["npm"] = {"weekly_downloads": "1.2M", "security_advisories": 0}
sources["security"] = {"audit_status": "passed", "cves_last_year": 0}
# Score against criteria
recommendations = []
score = sum([
3 if sources["github"]["stars"].rstrip("k").isdigit() and int(sources["github"]["stars"].rstrip("k")) > 10 else 0,
2 if sources["npm"]["security_advisories"] == 0 else -2,
sources[][] == -
])
recommendations.append({
: name,
: (score, ),
: sources[][],
: sources[][],
: sources[][] ==
})
{
: ,
: (sources.keys()),
: (recommendations, key= x: x[], reverse=),
: recommendations[][] recommendations
}
__name__ == :
result = research_library(sys.argv[], sys.argv[:])
(json.dumps(result, indent=))
| Rationalization | Reality |
|---|---|
| "I already know which library to use" | Personal familiarity is a bias — measured data on downloads, security audits, and maintenance beats intuition |
| "A quick Google search is enough" | Surface-level results miss security advisories, breaking changes, and community health signals in CHANGELOGs and issue trackers |
| "The first result is the best" | SEO ranking has no correlation with quality or suitability for your specific use case |
Use when evaluating libraries or tools, investigating root causes, performing competitive analysis, checking security posture of dependencies, or exploring unfamiliar technical domains. Do NOT use for opinions, subjective design decisions, or questions better answered by reading your own codebase (use codebase-memory instead).