Project ideas from Hacker News discussions.

Ask HN: What are tools you have made for yourself since the advent of AI?

📝 Discussion Summary (Click to expand)

6Dominant Themes in the Discussion

# Theme Summary & Supporting Quote
1 AI‑augmented personal productivity – many builders say LLMs act as a “force multiplier” for tiny tools. “I’ve made some tools after the advent of AI … I use a code generator … I want the tools to compile quickly on under‑powered hardware.” — 1vuio0pswjnm7
2 Personal knowledge bases & search – custom wikis, markdown search, and Typesense‑backed indexes are emerging as “lever” for recall. “Currently working on a markdown search and wiki backed by Typesense, also has good web search, fetch, crawl. This will power my personal knowledge base system as an important step towards more leverage and better outcomes.” — verdverm
3 Micro‑utilities / janky but purposeful tools – tiny data‑labeling or spreadsheet‑replacement apps are built to extract data, not to ship. “Similar to you, the things I have truly vibe‑coded … are largely data focused. … Building a custom dataset builder in just a couple hours of work is really powerful.” — teaearlgraycold
4 MCP / agent‑exposure frameworks – exposing command history, SQLite summaries, or git‑style hooks so LLMs can query them directly. “It’s a user daemon … exposes … hooks … pipes it to Claude … and then stores context in sqlite. It also exposes that data as MCP so I can use Claude to say ‘hey what was I working on yesterday,’ or any arbitrary time range.” — andrewstuart2
5 Custom dashboards & visualisations for personal data – heat‑maps, SVG maps, and tile servers built to visualise trails, GPS rides, or metrics. “This one generates maps from OpenStreetMap data + some custom curated info in YAML … This one takes GPS recorded rides and builds custom/personal heatmaps serving up the map tiles … AI tooling (Claude, mostly) has allowed me to bolt it together much faster …” — c0nsumer
6 Automation of repetitive chores – voice‑memo structuring, reminder pipelines, and sandboxed agent testing save hours each week. “It creates its own copy of your workdir for the agent to play in, and then you pull changes out ala git diffs or commits.” — kstenerud

Each quote is taken verbatim (HTML entities replaced with plain characters) and attributed to the original commenter.


🚀 Project Ideas

[ContextScribe]

Summary

  • A local daemon logs git activity, terminal commands, file edits, and builds a searchable SQLite timeline of a developer’s workday.
  • Enables instant AI‑generated answers to “what was I working on yesterday?”

Details

Key Value
Target Audience Individual developers and small teams juggling multiple repos
Core Feature AI‑enhanced timeline retrieval via MCP or CLI
Tech Stack Rust (daemon), SQLite, Tokio, MCP server, optional Python CLI
Difficulty Medium
Monetization Revenue-ready: Subscription ($5/mo per user)

Notes

  • HN users frequently complain “WTF was I working on yesterday?” (see andrewstuart2’s daemon). This solves that pain.
  • Provides a reusable MCP endpoint for any AI assistant, unlocking use‑cases beyond personal recall.

[KBaseSearch]

Summary

  • A self‑hosted markdown wiki that indexes files with Typesense, adds AI‑generated summaries, and offers full‑text search plus natural‑language queries.
  • Turns a personal knowledge base into an instantly searchable, AI‑augmented knowledge engine.

Details

Key Value
Target Audience Hobbyists, researchers, and technical writers maintaining large markdown collections
Core Feature Full‑text search + LLM summarization + Obsidian plugin integration
Tech Stack Typesense, Python (FastAPI), Transformers (BERT), SQLite for metadata, Docker
Difficulty Medium
Monetization Revenue-ready: Freemium SaaS ($7/mo hosted tier)

Notes

  • Quote fromverdverm’s markdown search and wiki: “I’m now using other tools to see what they are like.” Shows clear demand.
  • Potential to become the “personal Perplexy” – a searchable, AI‑enhanced wiki that HN users would love to adopt.

[SafeAgent Sandbox]

Summary

  • A lightweight CLI that wraps any AI‑generated script in a hardened sandbox, automatically snapshots the filesystem, restricts file writes, and records deterministic diffs for review.
  • Lets developers safely experiment with vibe‑coded tools on low‑spec hardware without risking system state.

Details

Key Value
Target Audience Developers who vibe‑code small utilities on laptops or Raspberry Pi
Core Feature Deterministic environment snapshots, file write whitelisting, automatic rollback on exit
Tech Stack Go (sandbox), Linux namespaces, Docker/FUSE, integration via MCP
Difficulty Low
Monetization Hobby

Notes

  • kstenerud’s yoloai and safeexec conversations show appetite for safe agent execution.
  • Enables broader sharing of vibe‑coded scripts on HN without fear of “rm -rf” accidents.

[TrailHeatmapper]

Summary

  • A tile‑server that turns personal GPS/Strava heatmaps into vector tiles, auto‑generates AI‑annotated trail descriptions, and serves them via a lightweight API for map‑making tools.
  • Gives hobby mappers a fast, searchable, AI‑enhanced map layer they can embed in their own sites.

Details

Key Value
Target Audience Open‑source map enthusiasts, mountain‑bike trail curators, GIS hobbyists
Core Feature Heatmap generation (Rust/rio), AI‑summarized trail tags, vector‑tile export (MBTiles)
Tech Stack Rust (rio), Typesense for tag suggestions, Leaflet.js front‑end, Docker
Difficulty High
Monetization Hobby

Notes

  • c0nsumer’s comment “The idea came from using the Strava heatmap... I could take it a lot further…” shows interest.
  • HN users love practical visualizations; this fills that gap.

[FinSight Expense]

Summary

  • A personal finance dashboard that ingests bank CSVs or API data, uses an LLM to auto‑categorize expenses, visualizes cash flow, and generates weekly AI‑crafted budget insights.
  • Removes manual bookkeeping and adds AI‑driven financial advice for non‑accountants.

Details| Key | Value |

|-----|-------| | Target Audience | Freelancers and side‑project creators who track personal cash flow | | Core Feature | Expense categorization via LLM, charts (Chart.js), export to CSV, reminder automation | | Tech Stack | Python (FastAPI), Pandas, LlamaIndex for retrieval, Chart.js, SQLite | | | Monetization | Hobby |

Read Later