frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Deploy from GitHub Actions Without Storing Secrets (Using OIDC)

https://www.even.li/posts/2026-03-03-deploy-github-actions-without-storing-secrets-using-oidc/
1•n_e•59s ago•0 comments

Two Months as a Vibe Coder

https://www.pinchofintelligence.com/two-months-as-a-vibe-coder/
1•rmeertens•1m ago•0 comments

Finance in the Dark

https://www.phenomenalworld.org/analysis/finance-in-the-dark/
1•speckx•1m ago•0 comments

I made the first eSIM service for OpenClaw

https://www.getesimpal.com/en-US/agents
1•deniurchak•3m ago•1 comments

The 10x inference tax you don't have to pay

https://www.distillabs.ai/blog/the-10x-inference-tax-you-dont-have-to-pay
1•maciejgryka•3m ago•0 comments

Show HN: Aside – Local meeting capture with vault-native AI distillation

https://github.com/jshph/aside/
1•jphorism•4m ago•0 comments

Package Management Is Naming All the Way Down

https://nesbitt.io/2026/03/03/package-management-is-naming-all-the-way-down.html
1•zdw•5m ago•0 comments

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
1•birdculture•5m ago•0 comments

Darwinian Post-Design

https://medium.com/@big.sebastian.ionut/darwinian-post-design-when-ease-of-use-becomes-the-only-h...
1•levabalkin•5m ago•1 comments

Qatar Shuts World’s Largest LNG Export Plant

https://www.bloomberg.com/news/articles/2026-03-02/european-gas-rallies-more-than-30-as-qatar-hal...
2•geox•7m ago•0 comments

Show HN: Kai – macOS native fully autonomous AI agent.

https://www.hikai.space
2•StephaneBessa•8m ago•0 comments

Invite people over to your home regularly

https://blog.mattglassman.net/you-should-invite-people-over-to-your-home-regularly/
1•speckx•10m ago•0 comments

Show HN: Potatoverse, home for your vibecoded apps

https://github.com/blue-monads/potatoverse
2•born-jre•11m ago•0 comments

Migrating Elderly Care AI from Qwen 3 to 3.5 on Apple Silicon – 14x Latency Fix

https://medium.com/@aejaz.sheriff/from-qwen-3-to-qwen-3-5-on-apple-silicon-a-14x-latency-regressi...
2•asqpl•11m ago•1 comments

Show HN: AI Home Design – Room redesign and video tour and 3D panorama

https://aihomedesign.io
2•Evanmo666•12m ago•0 comments

Jacinda Arderns move to Australia spotlight on New Zealand's brain drain problem

https://www.bbc.com/news/articles/clyx93597l4o
1•tartoran•12m ago•0 comments

Iran Just Triggered a Cryptic Shortwave Message [video][8m41s]

https://www.youtube.com/watch?v=ErmbTpxAM7Q
1•Bender•14m ago•0 comments

We may soon have 70M boomers too old to drive, too car-dependent to stop

https://lloydalter.substack.com/p/we-may-soon-have-70-million-boomers
3•cainxinth•14m ago•0 comments

Are AI Datacenters Increasing Electric Bills for American Households?

https://newsletter.semianalysis.com/p/are-ai-datacenters-increasing-electric
1•2bluesc•14m ago•1 comments

Tell HN: Gemini 3.1 Pro may be responding to other users' prompts

2•Orochikaku•15m ago•0 comments

Show HN: ScopeGate – Granular permission gateway for AI agents (MCP, open-core)

https://scopegate.dev
1•jetbootsmaker•15m ago•0 comments

What Happened to Agent Frameworks?

https://twitter.com/tonykipkemboi/status/2028564120338063859
1•tonykipkemboi•16m ago•1 comments

Show HN: PTEcorepractice – Free PTE Core Practice with Instant AI Scoring for PR

https://ptecorepractice.com
1•zzx•16m ago•0 comments

Some Tech Publications Consistently Score Products 5–7 Points Higher Than Others

https://www.criticaster.com/blog/publication-scoring-bias
1•gghootch•16m ago•0 comments

Anthropic Made Pitch in Drone Swarm Contest During Pentagon Feud

https://www.bloomberg.com/news/articles/2026-03-02/anthropic-made-pitch-in-drone-swarm-contest-du...
1•yakkomajuri•16m ago•0 comments

Show HN: Preventing infinite agent loops with mathematical convergence gates

https://github.com/Q00/ouroboros
1•q00•17m ago•1 comments

Wall Street Killed the Wildcatters: $100 Oil Now Means Bigger Buybacks

https://www.governance.fyi/p/wall-street-killed-the-wildcatters
2•guardianbob•17m ago•0 comments

Moving to Sweden as an American

https://departure.blog/moving-to-sweden-as-an-american/
1•speckx•18m ago•0 comments

Apple Does Value (Week)

https://om.co/2026/03/02/apple-does-value-week/
1•herbertl•19m ago•0 comments

Building a FOSS live streaming camera

https://blog.brixit.nl/building-a-custom-live-streaming-camera/
1•PaulHoule•20m ago•0 comments
Open in hackernews

Show HN: Open-sourced AI Agent runtime (YAML-first)

https://github.com/NikoSokratous/agentctl
1•nsokra02•2h ago
Been running AI agents in production for a while and kept running into the same issues:

controlling what they can do tracking costs debugging failures making it safe for real workloads

So we built AgentRuntime, the infrastructure layer we wished we had. Not an agent framework, but the platform around agents:

policies memory workflows observability cost tracking RAG governance

Agents and policies are defined in YAML, so it's infrastructure-as-code rather than a chatbot builder. Example – agents and policies in YAML agent.yaml – declarative agent config name: support_agent

model: provider: anthropic name: claude-3-5-sonnet

context_assembly: enabled: true

  embeddings:
    provider: openai
    model: text-embedding-3-small

  providers:
    - type: knowledge
      config:
        sources: ["./docs"]
        top_k: 3
policies/safety.yaml – governance as code name: security-policy

rules: - id: block-file-deletion condition: tool.name == "file_delete" action: deny

CLI – run and inspect Create and run an agent agentctl agent create researcher --goal "Research AI safety" --llm gpt-4 agentctl agent run researcher agentctl runs watch <run-id>

Manage policies agentctl policy list agentctl policy activate security-policy 1.0.0

RAG – ingest docs and ground responses in your knowledge base agentctl context ingest ./docs agentctl run --agent agent.yaml --goal "How do I deploy?"

Agent-level debugging agentctl debug -c agent.yaml -g "Analyze this dataset."

Cost tracking is exposed via the API (per agent/tenant), and the Web UI shows analytics. The workflow debugger (breakpoints, step-through) lives in the pkg layer; the CLI debug is for agent execution. What’s in there Governance

Policy engine (CEL) Risk scoring Encrypted audit logs RBAC Multi-tenancy Fully YAML-configurable

Orchestration

Visual workflow designer (React Flow) DAG workflows Multi-agent coordination Conditional logic Plugin hot-reload Workflow marketplace

Memory & Context

Working memory Persistent memory Semantic memory Event log

Context assembly combines:

policies workflow state memory tool outputs knowledge

RAG features:

embeddings (OpenAI or local) SQLite for development Postgres + vector stores in production

Observability

Cost attribution via API SLA monitoring Distributed tracing (OpenTelemetry) Prometheus metrics Deterministic replay (5 modes)

Production

Kubernetes operator (Agent, Workflow, Policy CRDs) Helm charts Istio config Auto-scaling Backup / restore GraphQL + REST API

Implementation

~50k LOC of Go Hundreds of tests Built for production (in mind)

Runs on: Local

SQLite In-memory runtime

Production

Postgres Redis Qdrant / Weaviate

Happy to answer questions or help people get started