1作者: rahma_tm6 个月前原帖
The Morning Struggle: Every night you promise yourself you&#x27;ll wake up early, be productive, start that workout, finally tackle your goals. But morning comes and that alarm? It&#x27;s just noise. You hit snooze, roll over, and another day slips away. You&#x27;re not lazy - you&#x27;re just tired of being tired.<p>The WakeCall Solution: What if your wake-up call felt like a friend who genuinely cares about your success? Someone who knows your name, your goals, and believes in you? Our AI doesn&#x27;t just wake you up - it connects with you, motivates you, and starts your day with purpose.
2作者: doremon09026 个月前原帖
Hi HN,<p>I built Layoffstoday, an open platform that tracks tech layoffs across ~6,500 companies.<p>What it does:<p>Aggregates layoff events from public news sources<p>Normalizes data by company, date, industry, and affected headcount<p>Shows historical patterns instead of isolated headlines<p>Why I built it: During job transitions, I noticed people had to jump across news articles, spreadsheets, and social posts just to answer simple questions like “Has this company laid people off before?” or “Is this happening across the industry?”<p>This is an attempt to make that information structured, searchable, and accessible.<p>Would love feedback on:<p>Data accuracy &#x2F; gaps<p>Signals that would actually help job seekers<p>Whether alerts or trend indicators are useful or noisy
2作者: cui6 个月前原帖
Chris Wiles showcased his setup for Claude Code and I thought it was sick. So I adapted it for Django projects. Several skills have been added to address the pain points in Django development.
3作者: jedwhite6 个月前原帖
I wanted to run markdown files like shell scripts. So I built an open source tool that lets you use a shebang to pipe them through Claude Code with full stdin&#x2F;stdout support.<p>task.md:<p><pre><code> #!&#x2F;usr&#x2F;bin&#x2F;env claude-run Analyze this codebase and summarize the architecture. </code></pre> Then:<p><pre><code> chmod +x task.md .&#x2F;task.md </code></pre> These aren&#x27;t just prompts. Claude Code has tool use, so a markdown file can run shell commands, write scripts, read files, make API calls. The prompt orchestrates everything.<p>A script that runs your tests and reports results (`run_tests.md`):<p><pre><code> #!&#x2F;usr&#x2F;bin&#x2F;env claude-run --permission-mode bypassPermissions Run .&#x2F;test&#x2F;run_tests.sh and summarize what passed and failed. </code></pre> Because stdin&#x2F;stdout work like any Unix program, you can chain them:<p><pre><code> cat data.json | .&#x2F;analyze.md &gt; results.txt git log -10 | .&#x2F;summarize.md .&#x2F;generate.md | .&#x2F;review.md &gt; final.txt </code></pre> Or mix them with traditional shell scripts:<p><pre><code> for f in logs&#x2F;\*.txt; do cat &quot;$f&quot; | .&#x2F;analyze.md &gt;&gt; summary.txt done </code></pre> This replaced a lot of Python glue code for us. Tasks that needed LLM orchestration libraries are now markdown files composed with standard Unix tools. Composable as building blocks, runnable as cron jobs, etc.<p>One thing we didn&#x27;t expect is that these are more auditable (and shareable) than shell scripts. Install scripts like `curl -fsSL <a href="https:&#x2F;&#x2F;bun.com&#x2F;install" rel="nofollow">https:&#x2F;&#x2F;bun.com&#x2F;install</a> | bash` could become:<p><pre><code> `curl -fsSL https:&#x2F;&#x2F;bun.com&#x2F;install.md | claude-run` </code></pre> Where install.md says something like &quot;Detect my OS and architecture, download the right binary from GitHub releases, extract to ~&#x2F;.local&#x2F;bin, update my shell config.&quot; A normal human can actually read and verify that.<p>The (really cool) executable markdown idea and auditability examples are from Pete Koomen (@koomen on X). As Pete says: &quot;Markdown feels increasingly important in a way I&#x27;m not sure most people have wrapped their heads around yet.&quot;<p>We implemented it and added Unix pipe semantics. Currently works with Claude Code - hoping to support other AI coding tools too. You can also route scripts through different cloud providers (AWS Bedrock, etc.) if you want separate billing for automated jobs.<p>GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;andisearch&#x2F;claude-switcher" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;andisearch&#x2F;claude-switcher</a><p>What workflows would you use this for?