One Step Better Ai Pm logo

One Step Better Ai Pm

Community
menkesu
one-step-better-ai-pm

Get one actionable improvement for your AI product based on the latest GenAI PM briefs. Fetch the last 5 days of curated AI PM insights from genaipm.com, analyze the current repo/project, find synergy between trending topics and the user's work, then research the source material and apply a concrete improvement. Use when the user wants to improve their AI product, get coaching on AI PM best practices, apply the latest industry insights to their codebase, or run "/one-step-better-ai-pm". Requires a GenAI PM subscriber email (set GENAIPM_EMAIL env var or provide when prompted).

Overview

Publishermenkesu
Repositoryawesome-pm-skills
Skill nameone-step-better-ai-pm
Stars
406
Forks
120
Bundled files
Instructions only
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by menkesu on GitHub. Read the source before you install it.

Installation

Install the One Step Better Ai Pm AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/menkesu/awesome-pm-skills.git /tmp/awesome-pm-skills
mkdir -p .claude/skills
cp -r /tmp/awesome-pm-skills/one-step-better-ai-pm .claude/skills/one-step-better-ai-pm
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable One Step Better Ai Pm in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads One Step Better Ai Pm on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so One Step Better Ai Pm is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

One Step Better AI PM

Get 1% better at AI product management every day. Pull the latest curated insights from GenAI PM, find what applies to the current project, and apply one concrete improvement.

Prerequisites

  • GenAI PM subscription (free at https://genaipm.com)
  • Subscriber email via GENAIPM_EMAIL env var or provided when prompted

Workflow

Phase 1: Fetch the Latest Briefs

  1. Get subscriber email: check GENAIPM_EMAIL env var first, then ask the user
  2. Fetch briefs:
    WebFetch https://genaipm.com/api/feed/latest?email=<email>
  3. Parse the JSON response — data array contains up to 5 entries, each with date, title, and content (full HTML)
  4. Extract key insights across all briefs:
    • New AI capabilities, model releases, API changes
    • Developer tools, frameworks, libraries
    • Real-world implementation patterns and case studies
    • Claude Code, Cursor, and AI coding assistant tips
    • Product management frameworks, methodologies, processes
    • Infrastructure, deployment, and DevOps patterns

If the API returns a 401, tell the user to subscribe at https://genaipm.com and set their email.

Phase 2: Build a Repo Profile

Create a structured summary of the project across 4 dimensions. This profile drives relevancy matching in Phase 3.

Step 1: Read universal discovery files (check each, skip if missing):

  • README.md, CLAUDE.md, .cursorrules, .cursor/rules — project description and conventions
  • package.json, pyproject.toml, requirements.txt, Cargo.toml, go.mod — dependencies and stack
  • docs/ directory listing — look for product briefs, architecture docs, or design docs and read them
  • .claude/settings.json, .claude/hooks.json, .claude/skills/ — AI assistant setup

Step 2: Scan the codebase structure:

  • List top-level directories to understand project layout
  • Grep for AI/LLM SDK imports (openai, anthropic, langchain, langgraph, google.generativeai, xai, cohere, replicate, huggingface, etc.)
  • Grep for API keys/env vars referencing AI services
  • Identify the main entry points and core business logic files

Step 3: Summarize into 4 dimensions:

  1. Product/Business — What does this product do? Who is it for? What problem does it solve? What is the core user-facing value?
  2. AI/ML Usage — Which AI models, APIs, and providers are used? What does the AI do in this product? (generation, curation, classification, chat, agents, embeddings, etc.) What's the AI pipeline?
  3. Technology Stack — Languages, frameworks, databases, hosting, key libraries. Frontend vs backend vs infra.
  4. Dev Tooling — CI/CD, testing, linting, AI coding tools (Claude Code, Cursor, Copilot), hooks, skills, MCP servers.

Write this summary internally before proceeding — it's the lens for matching briefs.

Step 4: Read .one-step-better/history.json if it exists — skip previously applied improvements.

Phase 3: Match, Rank, and Present (Approval Gate)

Do NOT proceed to Phase 4 without explicit user approval.

Step 1: Score each brief item against the repo profile.

For every distinct insight in the briefs, score it on these criteria (highest priority first):

  1. Core product relevance — Does this directly relate to what the product does? (e.g., a new model for a product that uses LLMs, a curation technique for a product that curates content, a payment integration for an e-commerce product)
  2. AI/ML pipeline relevance — Does this improve, extend, or optimize the AI/ML capabilities the project already uses? (e.g., a new model from a provider already in use, a better prompting technique, an evaluation framework)
  3. Technology stack relevance — Does this relate to the specific frameworks, languages, or infrastructure in use? (e.g., a Next.js performance improvement for a Next.js app, a Python library for a Python project)
  4. Dev tooling relevance — Does this improve the development workflow? (e.g., CI/CD, testing, AI coding tools)

Items matching criteria 1-2 should always rank above items matching only 3-4. A new model option for your AI pipeline beats a dev tooling tip every time.

Step 2: Present the top matches.

  1. "Your repo profile:" — Show the 4-dimension summary from Phase 2 (2-3 sentences total) so the user can verify understanding
  2. "From the latest GenAI PM briefs:" — List 2-3 highest-scoring items. For each:
    • What the brief covered (1-2 sentences)
    • Why it's relevant to this project specifically (reference the repo profile)
  3. "Recommended improvement:" — For the #1 match:
    • What to do (specific and concrete)
    • Which files would be affected
    • Expected benefit
    • Estimated time to apply
  4. Ask: "Want me to research this and apply it?"

Wait for the user to approve, pick a different item, or decline.

Phase 4: Deep Research & Apply

Once approved:

  1. Research the source — Extract URLs from the brief item's HTML. Use WebFetch to read the original article, blog post, docs, or repo. If the brief mentions a tool or technique, search the web for official documentation.
  2. Apply the improvement — Make the concrete change based on deep research and understanding of the repo. Examples:
    • Add or update Claude Code hooks, skills, or MCP configuration
    • Refactor code to use a new pattern or API from the brief
    • Add a new capability based on a tool or framework mentioned
    • Improve prompts, CLAUDE.md, or AI assistant setup
    • Update dependencies to leverage new features
  3. Explain what changed — Summarize: files modified, why (linked to the brief insight), and how it helps this project

Phase 5: Track Progress

  1. Create .one-step-better/history.json if it doesn't exist
  2. Append an entry:
    json
    {
      "date": "<today>",
      "briefDate": "<brief date>",
      "briefTitle": "<brief title>",
      "improvement": "<short description>",
      "filesChanged": ["<path1>", "<path2>"]
    }
  3. Report: "You've applied N improvements from GenAI PM briefs."
  4. Suggest adding .one-step-better/ to .gitignore if not already there

Guidelines

  • Always wait for approval in Phase 3 before making changes
  • Skip improvements already in .one-step-better/history.json
  • Prioritize improvements to the core product over dev tooling — a new model option for the AI pipeline is more valuable than a linting hook
  • If no briefs are relevant to the project, say so honestly and suggest checking back tomorrow
  • The repo profile is the key to relevancy — spend the time to build an accurate one

Frequently asked questions

What does the One Step Better Ai Pm AI skill do?

Get one actionable improvement for your AI product based on the latest GenAI PM briefs. Fetch the last 5 days of curated AI PM insights from genaipm.com, analyze the current repo/project, find synergy between trending topics and the user's work, then research the source material and apply a concrete improvement. Use when the user wants to improve their AI product, get coaching on AI PM best practices, apply the latest industry insights to their codebase, or run "/one-step-better-ai-pm". Requires a GenAI PM subscriber email (set GENAIPM_EMAIL env var or provide when prompted).

Why use One Step Better Ai Pm on TypingMind?

Because you install it once and use it with any model. One Step Better Ai Pm is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install One Step Better Ai Pm in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/menkesu/awesome-pm-skills/tree/main/one-step-better-ai-pm. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use One Step Better Ai Pm?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with One Step Better Ai Pm?

As many as you like. As long as a model supports skills, you can use One Step Better Ai Pm with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the One Step Better Ai Pm AI skill free?

It is published on GitHub by menkesu. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇