frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I'm an AI growth-hacking agent. My premise was a lie

1•happymouse•40s ago•0 comments

Show HN: DeraineDB – A 33MB Vector DB in Zig/Go with Sub-Millisecond HNSW

https://github.com/RikardoBonilla/DeraineDB
1•RikardoB•2m ago•0 comments

Google says 90 zero-days were exploited in attacks last year

https://www.bleepingcomputer.com/news/security/google-says-90-zero-days-were-exploited-in-attacks...
1•akyuu•2m ago•0 comments

Zen of AI Coding

https://nonstructured.com/zen-of-ai-coding/
2•kristianpaul•2m ago•0 comments

Cloudflare rewrites Next.js as AI rewrites commercial open source

https://newsletter.pragmaticengineer.com/p/the-pulse-cloudflare-rewrites-nextjs
1•pseudolus•3m ago•0 comments

Apple Developer Security Event

https://www.youtube.com/watch?v=UZeSyodAszc
2•de_aztec•6m ago•0 comments

Show HN: Blinkit MCP – Let Claude order groceries

https://github.com/hereisSwapnil/blinkit-mcp
1•hereisSwapnil•6m ago•0 comments

Sam Altman asks if government can nationalize artificial general intelligence

https://thenewstack.io/openai-defense-department-debate/
3•MilnerRoute•8m ago•0 comments

Kopia – Encrypted, Compressed, and Deduplicated Backups

https://kopia.io/
1•GTP•8m ago•0 comments

Show HN: Reformat Word document citations (APA/Vancouver) in <1 second

https://github.com/brodie-neuro/ScholarRef
1•brodie-neuro•8m ago•1 comments

Website is a big waste of time

https://spacepanda.se/articles/toxic_pages.html
1•speckx•9m ago•0 comments

GPT 5.4 Thinking and Pro

https://twitter.com/OpenAI/status/2029620619743219811
10•twtw99•9m ago•0 comments

AI Slop Bores Me

https://www.youraislopbores.me/
2•KuSpa•9m ago•0 comments

Bron-Crypto: A Go cryptography library focusing on MPC

https://github.com/bronlabs/bron-crypto
1•somezero•9m ago•0 comments

Data Science Weekly – Issue 641

https://datascienceweekly.substack.com/p/data-science-weekly-issue-641
1•sebg•10m ago•0 comments

Pentagon Says It's Told Anthropic the Firm Is Supply-Chain Risk

https://www.bloomberg.com/news/articles/2026-03-05/pentagon-says-it-s-told-anthropic-the-firm-is-...
1•nickysielicki•12m ago•0 comments

What Is Phenomenology? [video]

https://www.youtube.com/watch?v=TG3fq-KHDDw
1•modinfo•12m ago•0 comments

A 2024 Plea for Lean Software (with running code)

https://berthub.eu/articles/posts/a-2024-plea-for-lean-software/
1•tosh•13m ago•0 comments

GPT-5.4 Thinking and GPT-5.4 Pro

https://twitter.com/i/status/2029620619743219811
15•denysvitali•13m ago•1 comments

Ask HN: Claude Regression for Anyone Else?

2•rudedogg•14m ago•0 comments

Ask HN: Moving from Software Engineer to PM or another area?

2•mr_00ff00•14m ago•1 comments

Oracle Plans Job Cuts in Face of AI Cash Crunch

https://www.bloomberg.com/news/articles/2026-03-05/oracle-layoffs-to-impact-thousands-in-ai-cash-...
1•speckx•16m ago•0 comments

Show HN: A unified event protocol dashboard for startup founders

https://founders-dashboard-pi.vercel.app
1•contact_codevia•16m ago•1 comments

GPT-5.4 Thinking System Card

https://openai.com/index/gpt-5-4-thinking-system-card/
17•mudkipdev•17m ago•1 comments

Show HN: Cognitive architecture for Claude Code – triggers, memory, docs

https://github.com/safety-quotient-lab/psychology-agent
1•9wzYQbTYsAIc•19m ago•0 comments

Free $1

https://block-book.com/user/kushalkd
1•blockbook123•20m ago•1 comments

GPT-5.4

https://openai.com/index/introducing-gpt-5-4/
53•meetpateltech•20m ago•10 comments

The Download: an AI agent's hit piece, and preventing lightning

https://www.technologyreview.com/2026/03/05/1133968/the-download-ai-agent-hit-piece-preventing-li...
1•joozio•20m ago•0 comments

Study highlights significant costs in large-scale mechanical thinning of forests

https://phys.org/news/2026-02-highlights-significant-large-scale-mechanical.html
3•PaulHoule•22m ago•0 comments

Reasoning models struggle to control their chains of thought, and that’s good

https://openai.com/index/reasoning-models-chain-of-thought-controllability/
7•meetpateltech•24m ago•0 comments
Open in hackernews

A 130KB Markdown file that turns Claude Code into an opinionated senior PM

https://github.com/Digidai/product-manager-skills
2•genedai•1h ago

Comments

genedai•1h ago
I got tired of AI giving me "it depends" answers when I asked it product management questions. So I built a SKILL.md file -- pure Markdown, zero scripts, zero dependencies -- that turns Claude Code (or Cursor, Windsurf, Codex) into an opinionated PM agent with real domain knowledge.

The architecture is intentionally boring. A single SKILL.md file acts as a router: it maps 40+ user intents to 6 knowledge modules loaded on demand from a `knowledge/` directory. Each module contains frameworks, decision trees, quality gates, and anti-pattern detectors. There are 12 templates in a `templates/` directory. Total system: ~130KB across 20 Markdown files. No build step, no runtime, no API calls. You can read every line before installing.

What makes it different from just prompting "act like a PM": the knowledge modules encode actual domain logic. The finance module has 32 SaaS metrics with exact formulas and stage-specific benchmarks. Ask it about 8% monthly churn and it doesn't say "that's high" -- it computes `1 - (1 - 0.08)^12 = 63%` annual churn, flags it as a red severity indicator, and tells you the benchmark for your stage. The discovery module enforces Mom Test principles and catches "Solution Smuggling" (sneaking a solution into a problem statement). The artifacts module has 8 story splitting patterns and 9 epic breakdown patterns, not just a template to fill in.

The quality gate system is the part I'm most interested in feedback on. Every output passes through universal gates (assumptions must be labeled, outcomes must be measurable, no "Feature Factory" outputs) plus domain-specific gates loaded from the active knowledge module. The agent is designed to push back -- if you ask for a PRD without a clear problem statement, it will challenge you rather than generate filler.

Tradeoffs worth noting: it's CC BY-NC-SA 4.0, not MIT, since the knowledge modules represent significant curation work. It's also opinionated by design, which means it won't work well if you want a yes-machine. And it's optimized for Claude Code's SKILL.md convention -- it works in other editors that support Markdown skills but the routing system is tuned for Claude's context window management.

GitHub: https://github.com/Digidai/product-manager-skills

Install: `clawhub install product-manager-skills`