[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-75072":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":15,"forks30d":15,"starsTrendScore":19,"compositeScore":20,"rankGlobal":9,"rankLanguage":9,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":22,"topics":24,"createdAt":9,"pushedAt":9,"updatedAt":32,"readmeContent":33,"aiSummary":34,"trendingCount":15,"starSnapshotCount":15,"syncStatus":13,"lastSyncTime":35,"discoverSource":36},75072,"gtm-engineer-skills","onvoyage-ai\u002Fgtm-engineer-skills","onvoyage-ai","Claude Code skill for improving website AEO (AI Engine Optimization) and GEO (Generative Engine Optimization) scores — 16 foundational checks, 6 intelligence dimensions, framework-specific fixes",null,"HTML",1191,22,2,13,0,44,120,169,132,17.09,"MIT License",false,"main",[25,26,27,28,29,30,31],"aeo","ai-optimization","claude-code","geo","llms-txt","seo","structured-data","2026-06-12 02:03:32","# GTM Engineer Skills\n\nA collection of agent skills for go-to-market engineering — research, content, SEO, GEO, and frontend implementation. The repo is meant to work for both Codex and Claude Code.\n\n---\n\n## Workflow\n\nSkills are designed to run in sequence. Each step produces files that feed into the next.\n\n```mermaid\nflowchart TD\n    RB[\"research-brand\u003Cbr\u002F>URL → brand_dna\"]\n\n    RK[\"research-keywords\u003Cbr\u002F>→ keyword_research\"]\n    ROR[\"reddit-opportunity-research\u003Cbr\u002F>→ reddit_opportunities\"]\n    GCR[\"geo-content-research\u003Cbr\u002F>→ geo_prompt_targets\"]\n\n    GCP[\"geo-content-planning\u003Cbr\u002F>→ content_architecture\"]\n    BB[\"build-backlinks\u003Cbr\u002F>→ backlink_plan\"]\n\n    WSGC[\"write-seo-geo-content\u003Cbr\u002F>→ markdown articles\"]\n    CGC[\"create-geo-charts\u003Cbr\u002F>→ SVG + data tables\"]\n\n    AC[\"audit-content\u003Cbr\u002F>verify sources\"]\n\n    BRP[\"build-resource-pages\u003Cbr\u002F>content → frontend\"]\n    AWA[\"audit-website-aeo\u003Cbr\u002F>live URL → scored audit\"]\n    IAG[\"improve-aeo-geo\u003Cbr\u002F>website code fixes\"]\n\n    RB --> RK\n    RB --> ROR\n    RB --> GCR\n\n    RK --> GCP\n    ROR --> GCP\n    GCR --> GCP\n    ROR --> BB\n    GCR --> BB\n\n    GCP --> WSGC\n    GCP --> CGC\n\n    WSGC --> AC\n    CGC --> AC\n\n    AC --> BRP\n    AWA --> IAG\n```\n\n### Step by step\n\n| Step | Skill                             | Input                                               | Output                                                                |\n| ---- | --------------------------------- | --------------------------------------------------- | --------------------------------------------------------------------- |\n| 1    | **`research-brand`**              | Company URL                                         | `brand_dna.md` — positioning, audience, competitors, voice            |\n| 2a   | **`research-keywords`**           | Brand DNA + product category                        | `keyword_research.md` — prioritized keywords by intent                |\n| 2b   | **`reddit-opportunity-research`** | Brand DNA + optional keyword\u002FGEO files              | `reddit_opportunities.md` — ranked subreddit and thread opportunities |\n| 2c   | **`geo-content-research`**        | Brand DNA + product category                        | `geo_prompt_targets.md` — AI prompts by business-value tier           |\n| 3    | **`geo-content-planning`**        | Brand DNA + keywords + GEO prompts + Reddit signals | `content_architecture.md` — page plan with types, URLs, priority      |\n| 4a   | **`write-seo-geo-content`**       | Content architecture + research                     | Markdown articles with frontmatter                                    |\n| 4b   | **`create-geo-charts`**           | Data from articles                                  | SVG charts + HTML tables + JSON-LD                                    |\n| 5    | **`audit-content`**               | Articles + Brand DNA                                | Audit reports — verified URLs, stats, claims                          |\n| 6a   | **`build-resource-pages`**        | Audited content + client codebase                   | Frontend resource center pages                                        |\n| 6b   | **`audit-website-aeo`**           | Live website URL                                    | `aeo_audit_report.md` — scored AEO\u002FGEO audit with prioritized fixes   |\n| 6c   | **`improve-aeo-geo`**             | Client website codebase + audit report              | Code fixes for AI discoverability                                     |\n\nSteps marked **a\u002Fb\u002Fc** can run in parallel.\n\n## Installation\n\nClone the repo once, then make whichever skill folders you want available to Codex or Claude Code.\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002Fonvoyage-ai\u002Fgtm-engineer-skills.git\ncd gtm-engineer-skills\n```\n\nEach skill lives in its own folder and uses a `SKILL.md` file, which matches the shared agent-skills pattern used across both tools.\n\n### Codex\n\nSymlink or copy the desired skill folders into `~\u002F.codex\u002Fskills\u002F` (or `$CODEX_HOME\u002Fskills\u002F` if you use a custom Codex home).\n\n```bash\nmkdir -p ~\u002F.codex\u002Fskills\nln -s \"$PWD\u002Fresearch-brand\" ~\u002F.codex\u002Fskills\u002Fresearch-brand\nln -s \"$PWD\u002Freddit-opportunity-research\" ~\u002F.codex\u002Fskills\u002Freddit-opportunity-research\n```\n\n### Claude Code\n\nSymlink or copy the desired skill folders into `~\u002F.claude\u002Fskills\u002F` or a project-local `.claude\u002Fskills\u002F` directory.\n\n```bash\nmkdir -p ~\u002F.claude\u002Fskills\nln -s \"$PWD\u002Fresearch-brand\" ~\u002F.claude\u002Fskills\u002Fresearch-brand\nln -s \"$PWD\u002Freddit-opportunity-research\" ~\u002F.claude\u002Fskills\u002Freddit-opportunity-research\n```\n\n## Platform Note\n\nThe `reddit-opportunity-research` workflow is useful in either tool, but the exact Reddit access experience differs by product. ChatGPT already has native Reddit access in-product; Claude generally does not, so keep that in mind when comparing outputs.\n\n---\n\n## Skills\n\n### [Research Brand DNA](research-brand\u002F)\n\nResearches a company from its URL and produces a Brand DNA file covering positioning, audience, competitors, voice, and messaging.\n\nFolder: `research-brand\u002F`\n\n### [Research SEO\u002FGEO Keywords](research-keywords\u002F)\n\nFinds high-value SEO and GEO keywords using web search, AI analysis, and optionally paid tools like Ahrefs or Semrush.\n\nFolder: `research-keywords\u002F`\n\n### [Reddit Opportunity Research](reddit-opportunity-research\u002F)\n\nFinds Reddit pain-point discussions, target subreddits, and search-language patterns based on Brand DNA. Produces a ranked opportunity list for helpful promotion, content seeding, and prompt research.\n\nFolder: `reddit-opportunity-research\u002F`\n\n### [GEO Content Research](geo-content-research\u002F)\n\nResearches what prompts people ask AI engines about a product category. Produces a GEO prompt target table with business-value tiers (Buy\u002FSolve\u002FLearn).\n\nFolder: `geo-content-research\u002F`\n\n### [GEO Content Planning](geo-content-planning\u002F)\n\nReads brand DNA, keyword research, and GEO prompt targets, then produces a content architecture — what pages to create, their types, URLs, and priority.\n\nFolder: `geo-content-planning\u002F`\n\n### [Write SEO + GEO Content](write-seo-geo-content\u002F)\n\nWrites product-led content pages optimized for search engines and AI engine citations. Research-first methodology with page-type frameworks and no fabricated stats.\n\nFolder: `write-seo-geo-content\u002F`\n\n### [Create GEO\u002FSEO Charts](create-geo-charts\u002F)\n\nCreates data visualizations that AI engines can parse, quote, and cite. Every chart includes a text summary, HTML data table, and JSON-LD.\n\nFolder: `create-geo-charts\u002F`\n\n### [Audit Content](audit-content\u002F)\n\nVerifies truthfulness, accuracy, and link integrity of content before publishing. Catches fabricated statistics, dead URLs, and misattributed sources.\n\nFolder: `audit-content\u002F`\n\n### [Build Resource Pages](build-resource-pages\u002F)\n\nTakes existing content markdown files and builds production-ready resource center pages on client websites using their existing tech stack and design system.\n\nFolder: `build-resource-pages\u002F`\n\n### [Audit Website AEO\u002FGEO](audit-website-aeo\u002F)\n\nCrawls a live website, runs 16 deterministic checks plus a 6-dimension content evaluation, and produces a scored A-F audit report with prioritized fixes. Run it to get a baseline before `improve-aeo-geo`, and again afterward to measure the delta. Includes a zero-dependency Node crawler script.\n\nFolder: `audit-website-aeo\u002F`\n\n### [Improve Website AEO\u002FGEO](improve-aeo-geo\u002F)\n\nAudits a website codebase and makes code changes so AI engines can better discover, parse, quote, and cite the site.\n\nFolder: `improve-aeo-geo\u002F`\n\n**Check your score first**: run `audit-website-aeo` for a local audit, or use the hosted [aeo-audit.sh](https:\u002F\u002Faeo-audit.sh\u002F).\n\n---\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for how to contribute new skills, improve existing ones, or add examples.\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","该项目旨在通过一系列自动化技能提升网站的AEO（AI引擎优化）和GEO（生成式引擎优化）评分，涵盖16项基础检查与6个智能维度，并提供针对特定框架的修复建议。其核心功能包括品牌研究、关键词研究、内容规划及创建、SEO\u002FGEO内容撰写、图表生成以及网站审计等，采用HTML语言编写。适合需要增强在线可见度、改善搜索引擎排名或提高内容质量的企业和个人使用，特别是在市场营销和技术实施阶段。","2026-06-11 03:52:12","high_star"]