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

psyke-audit心理审计

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

3,888

周安装

167

GitHub Stars

公开资料未说明

下载量

1,363
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:psyke-audit(心理审计)
来源仓库:https://github.com/beebeebot/psyke-audit
安装命令:
openclaw skills install psyke-audit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install psyke-audit

简介

为网站制作品牌化的 SEO 与 GEO 综合审核报告。

  • 支持站点健康检查与搜索引擎优化状况深度分析。psyke-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输出包含问题定位与改进建议的结构化审计结果。
  • 审核范围受授权限制,敏感站点需提前获得访问许可。
  • 报告结论仅供参考,重大改动前建议人工二次确认。

SKILL.md

name
psyke-audit
description
|

Psyke SEO & GEO Audit

Branded audit product for Psyke (psyke.co). Produces a scored, dark-mode slide deck covering technical SEO, GEO readiness, competitor benchmarking, and actionable recommendations.

Output

A single index.html file deployed to Vercel containing:

  • SEO Health score (out of 100)
  • GEO Readiness score (out of 100)
  • Scored breakdown by category
  • Issue slides with evidence and fixes
  • Competitor benchmark (when Ahrefs data available)
  • AI visibility test results
  • Prioritised action plan
  • Psyke CTA slide

References

Read these before building an audit:

  • references/scoring.md — scoring methodology (SEO + GEO rubrics)
  • references/psyke-theme.css — complete CSS theme (paste into <style>)
  • references/slide-structure.md — fixed slide order and design rules
  • references/geo-framework.md — GEO assessment process

Process

Phase 1: Data Collection

1. Technical Crawl (always)

- Fetch homepage, robots.txt, sitemap.xml
- Fetch 4-6 key inner pages (services, about, contact, sector pages)
- Use browser to evaluate each page for: title, meta description, canonical, H1s, H2s, H3s, schemas, OG tags, image alt text, viewport meta
- Check for soft 404s on common URL patterns
- Note the CMS/platform if identifiable

2. Ahrefs Data (when MCP connected)

Pull via Ahrefs MCP or have Psyke provide:
- Domain Rating
- Organic keyword count + top keywords
- Monthly organic traffic
- Referring domains count
- Google AI Overview citation count
- ChatGPT citation count
- Branded vs non-branded split (estimate)
- Same metrics for 2-3 competitors

3. AI Visibility Testing (always)

Run 5-8 queries through ChatGPT and/or Perplexity:
- "[client industry] + Australia" query
- "best [service/product]" query
- "how does [client service] work" query
- "[client] vs [competitor]" query
- Location-specific query
Record: was client mentioned? which competitors? what was cited?

Phase 2: Scoring

Apply the rubrics from references/scoring.md:

  1. Score each SEO category, noting specific evidence for each deduction
  2. Score each GEO category, noting specific evidence
  3. Calculate totals — do not round

Phase 3: Build the Deck

Setup:

cd ~/Developer
mkdir [client]-seo-audit
cd [client]-seo-audit
git init
echo "# [Client] SEO & GEO Audit" > README.md

Build index.html:

  1. Start with the viewport-base styles from the frontend-slides skill
  2. Paste the full Psyke theme CSS from references/psyke-theme.css
  3. Follow the slide structure from references/slide-structure.md exactly
  4. Include the SlidePresentation JavaScript class (keyboard nav, touch, progress bar, nav dots, intersection observer)

Font include:

<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">

Key HTML patterns:

Title slide:

<section class="slide slide-title">
    <div class="glow-orb glow-purple" style="top: -10%; right: -5%;"></div>
    <div class="glow-orb glow-lime" style="bottom: 10%; left: -3%;"></div>
    <div class="content-wrap">
        <p class="psyke-logo reveal">PSYKE</p>
        <h1 class="reveal reveal-delay-1"><span class="accent">[Client Name]</span></h1>
        <p class="subtitle reveal reveal-delay-2">SEO & GEO Audit — [Month Year]</p>
        <p class="label-muted reveal reveal-delay-3">[client-url.com.au]</p>
    </div>
</section>

Dual score slide:

<section class="slide">
    <div class="slide-split">
        <div class="split-left">
            <div class="dual-score reveal">
                <div class="score-block">
                    <div class="score-ring" style="--score-pct: 0.XX;">
                        <svg viewBox="0 0 100 100">
                            <circle class="ring-bg" cx="50" cy="50" r="45"/>
                            <circle class="ring-fill" cx="50" cy="50" r="45"/>
                        </svg>
                        <div class="score-number">XX</div>
                    </div>
                    <p class="score-label-big" style="color: var(--psyke-purple);">SEO Health</p>
                </div>
                <div class="score-block">
                    <div class="score-ring" style="--score-pct: 0.XX;">
                        <svg viewBox="0 0 100 100">
                            <circle class="ring-bg" cx="50" cy="50" r="45"/>
                            <circle class="ring-fill ring-fill-lime" cx="50" cy="50" r="45"/>
                        </svg>
                        <div class="score-number">XX</div>
                    </div>
                    <p class="score-label-big" style="color: var(--psyke-lime);">GEO Ready</p>
                </div>
            </div>
        </div>
        <div class="split-right">
            <!-- Breakdown grid -->
        </div>
    </div>
</section>

Competitor benchmark:

<div class="competitor-grid">
    <div class="competitor-row header">
        <div class="competitor-cell"></div>
        <div class="competitor-cell">DR</div>
        <div class="competitor-cell">Keywords</div>
        <div class="competitor-cell">Traffic</div>
        <div class="competitor-cell">AI Citations</div>
    </div>
    <div class="competitor-row client">
        <div class="competitor-cell">[Client]</div>
        <div class="competitor-cell">XX</div>
        <!-- etc -->
    </div>
    <!-- competitor rows -->
</div>

Phase 4: Deploy

git add -A
git commit -m "[Client] SEO & GEO Audit - SEO: XX/100, GEO: XX/100"
gh repo create beebeebot/[client]-seo-audit --public --source=. --push
npx vercel --yes --prod

Phase 5: Deliver

Send the Vercel URL to the requester with:

  • Both scores and breakdown summary
  • The presentation link
  • 2-3 sentence summary of key findings

Writing Style

  • Direct and specific. No filler.
  • Evidence before opinion. Show the data, then make the observation.
  • One sharp insight per issue, not three paragraphs restating the same point.
  • Recommendations must be specific: "Add FAQ schema to /services/ page" not "consider adding structured data".

AI Writing Patterns to Avoid (mandatory)

These are the most common tells. Fix every instance before deploying:

  • Em dashes (—): Replace with periods, commas, or restructure. Use sparingly if at all.
  • AI vocabulary: Don't use "crucial", "landscape", "delve", "enhance", "foster", "showcase", "underscore", "pivotal", "vibrant", "testament", "garner", "interplay", "tapestry". Use plain words.
  • Rule of three: Don't force ideas into groups of three. "Buying guides, how-tos, and comparison content" → "buying guides and comparisons".
  • Negative parallelisms: Don't write "It's not just X, it's Y". Just say what it is.
  • Promotional language: No "breathtaking", "groundbreaking", "stunning", "nestled", "in the heart of".
  • -ing superficial analysis: Don't tack on "ensuring...", "highlighting...", "showcasing..." to add fake depth.
  • Vague attributions: No "experts believe", "industry reports suggest". Cite specifics or don't claim it.
  • Filler phrases: No "it's important to note that", "in order to", "at the end of the day".
  • Sycophantic tone: No "Great question!", "Excellent point!", "That's a really good observation".
  • Generic positive conclusions: No "the future looks bright" or "exciting times ahead".

What NOT to Do

  • Don't improvise the slide order — follow the structure
  • Don't use light-mode slides — everything is dark Psyke theme
  • Don't skip the GEO assessment, even without Ahrefs — the AI query testing and citability audit always apply
  • Don't round scores for optics — 43 is 43
  • Don't write generic recommendations — every fix should reference a specific URL or element
  • Don't include the Psyke logo on every slide — title and closing only

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.2%
按下载量换算1,052

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills