HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jakedahn

no profile record

Submissions

HuggingFace Text-to-CAD Generation Benchmark

huggingface.co
1 points·by jakedahn·mese scorso·0 comments

Show HN: Oblique Strategies for Claude Code

github.com
2 points·by jakedahn·7 mesi fa·0 comments

The System Skill Pattern

shruggingface.com
1 points·by jakedahn·9 mesi fa·0 comments

Show HN: The System Skill Pattern

shruggingface.com
11 points·by jakedahn·9 mesi fa·2 comments

comments

jakedahn
·9 mesi fa·discuss
Ooo, yeah!

I’m excited to play with their memory stuff. I’m curious if they will add any hooks for allowing skills to store things intentionally.

The system skill idea is a little different in that you can store and query structured data out of your own SQLite db.
jakedahn
·9 mesi fa·discuss
Author here-- hah, I'm surprised someone posted this already-- I just came to share it as a Show HN post and get the conversation started:

I’ve been playing with Claude Skills and stumbled on a simple pattern for tiny, durable personal data systems:

* CLI: a small, self-contained executable

* SKILL.md: the operator's manual (what to run, how to parse output, how to think about the system)

* SQLite: a local DB for persistent state

It’s nothing mind-blowing, but the ergonomics of this combo feel great.

If you define a process/flow, Claude can "turn the crank" by running the CLI, accumulating context, and animating the system to life over time.

They’re also easy to share: you can distribute System Skills via Claude Code’s `/plugin marketplace add <repo>`.

More details in the blog post and the toy Pomodoro System Skill reference implementation here:

Blog: https://www.shruggingface.com/blog/the-system-skill-pattern Repo: https://github.com/jakedahn/pomodoro

--

Curious whether any of this resonates. Also excited to hear any interesting System Skill ideas worth exploring!