Skip to content

thepian/awesome-product-approach

Repository files navigation

Awesome Product Approach Awesome

I still haven't found the universal product strategy. Engineers and Scientists tend to develop a technology in search of a Job-to-be-done, and Marketeers tend to promote before they have something really worth buying. For all it's faults, I think you have to slave away for years at something with a core value before you turn it into a product demo, so you can prove the value or iterate/pivot towards something that is valuable.

In the meantime these notes are on how tools and approaches I've found that cover the range from ideation to QA.

The Journey(process)

The way we go from the basic product idea to a product that is ready for the market is a long one. It is not a straight line, and it is not a single process. AI will not change that, so you want to be grounded in what we already do. You should be able to make shortcuts. If you're looking to speed things up, you need to tune more than cutting down on how much code needs to be written by humans.

  • Describe the problem and the solution(product)
  • Put meat on the bones, create a PRD(Product Requirements Document)
  • Prototype the User Experience(Mock up important features with design tools such as Figma)
  • Settle on the Design System Decisions(Interaction Principles, Visual Style, Design Tokens)
  • Check central User Workflows will not be broken in the product
  • Define the Technical Architecture(How to build and What building blocks)
  • Break down to features, components and tasks
  • Write the code

It doesn't stop there though. At this point we don't know if the product is any good. We need to test it, and we need to make sure it is maintainable. We need to capture the knowledge about what we made and how, so it can be understood and improved in the future.

flowchart TD
 subgraph F["Architecture"]
        n1["Techinical"]
    n2["UX Design"]
    n3["Design System Decisions"]
  end
    A["Ideation"] --> B["Pitch"] & C["PRD"] & D["Amazon 6pgr"] & E["Amazon PRFAQ"]
    B --> F
    C --> F
    D --> F
    E --> F
    F --> G["PRD+"]
    G --> H["Task planning"]
    H --> I["Implementation"]
    I --> J["QA"]
    J --> K["Release"]

     A:::dark
     B:::light
     C:::light
     D:::light
     E:::light
     F:::box
     G:::light
     H:::light
     I:::dark
     J:::dark
     K:::dark
    classDef dark fill:#2d1a3a,color:#fff,stroke:#988ACA,stroke-width:2px
    classDef light fill:#bfc0c0,color:#222,stroke:#988ACA,stroke-width:1px
    classDef box stroke:#988ACA
Loading

"You will have to learn these steps to go beyond toy examples. AI is just a multiplier on top of that" -- Parker Rex

"Testing is going to be so-so important. QA used to be the worst developers, sorry." -- Parker Rex

As we add more AI, the desicions will still need to be made and validated. The features still need to be implemented and someone needs to make sure they are working as intended.

Creating Product Description

Expanding the basic idea into a product description that is comprehensive enough to determine the Architecture technically, visually and interaction wise.

Save a PRD as a new document in memory-bank folder. Create the folder and new file as needed. Create other files in the memory-bank folder as needed according to the rules.

Defining the Architecture

Prompts for defining the architecture:

Gemini did a better job coming up with the rule than Claude.

Web, Visuals & Layout

Software Planning and Documentation

With AI you have to shift the way you approach coding. You have to think about it as a whole, and create as much documentation up front as possible. This is a shift from the traditional approach of writing code and then documenting it. If you try to write it first, the AI will often create code that goes in the wrong direction. You might need a line of documentation for every 5 lines of code. So you need to get the AI to help you write the documentation first.

I like the Claude desktop app, it's very well made, but you can also use it in the browser. Be sure the define your Projects. That way you can create project instructions and link to foundational documents for each project. You can for instance link to a GithHub repo with source code, and ask Claude to analyze it for you. Don't forget to link Google Drive and putting reference documents in there.

Defining a Context

Context is essential for LLMs. You essentially have to give it thousands of lines for context before telling it what to do. Put files in your source code repository to cover relevant conventions for the LLM to follow. Gemini famously has a 1 million token context window, which then enables you to potentially stuff a whole specialised knowledge base together with your task in one request.

Put the memory bank rules in the particular rules location and get them started by telling your Agent to "initialize memory bank". Make sure to properly add the rule and set it to "Always" apply.

Software Development Setup

Some report Gemini Pro 2.5 to be the bleeding edge, but Claude Sonnet 3.5 and 3.7 have been widely reported as being the best, so it is what I currently use. The benefit of Gemini would be price, which cannot be ignored.

Claude Code seems to get me further faster, but it ends up being somewhat costly. It ends up costing up to $20/days on busy days. It seems to be better at introspecting the codebase. When running with Claude Code, I use VS Code with Claude code running in a Terminal tab moved into the Editor Area.

Cursor is much cheaper, but seems to mainly consider the code in the current file. Sadly you also loose out on the best programming language support.

For Cursor the advice is to create a new chat for each task.

Other Options

MCP Extensions

Taskmaster

github/claude-task-master

pnpm install -g task-master-ai
task-master init

Add the tokens for Claude.. At this stage it should be ready to go.

Other options

task-master parse-prd <path/to/prd.md>
task-master list
task-master next
task-master generate

Visual Reasoning

It seems that for Visual Reasoning you should use OpenAI O1 over the competition, so when working with UI layouts, try O1 first.

Claude seems ok for turning a simple diagram into mermaid diagrams.

About

Links to awesome projects and ideas for building products

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published