惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - HaraldBregu/friday
haraldbregu · 2026-05-21 · via Hacker News - Newest: "AI"

Friday is an Electron desktop app for AI-assisted workflows. It uses a TypeScript main process, a React renderer, typed preload IPC, provider adapters, connectors, skills, scheduled jobs, and local application state.

Project Context

  • Project type: desktop app
  • Runtime: Electron, Node.js
  • UI: React, Tailwind CSS, shadcn-style components
  • Main language: TypeScript
  • Testing: Jest, Testing Library, Playwright
  • Packaging: electron-vite, electron-builder
  • Sensitive data: AI provider API keys, connector credentials, agent history, local workspace data, channel configuration
  • Current compliance target: no formal regulated-data certification claimed

Development

yarn install --frozen-lockfile
yarn dev

Use the Linux variants when running in a Linux environment that requires Electron sandbox changes:

yarn dev-linux

Quality Gates

Run the same baseline expected in CI before merging:

yarn quality:check

Focused commands:

yarn typecheck
yarn lint
yarn test:main
yarn test:renderer

Architecture Notes

  • Main-process services live under src/main.
  • Renderer code lives under src/renderer/src.
  • Cross-process API contracts live under src/shared and src/preload.
  • Browser windows should be created through WindowFactory so Electron security defaults stay consistent.
  • Provider-specific AI logic should stay behind provider adapters, not leak into agent or UI code.

Security Baseline

  • Renderer windows use sandboxing, context isolation, disabled Node integration, and web security.
  • Preload APIs should expose narrow typed IPC methods only.
  • Secrets must not be committed, logged, rendered, or stored in plaintext where avoidable.
  • Connector and tool actions that write, delete, publish, or access private data must pass explicit permission checks.

See SECURITY.md and docs/privacy-and-data.md for operational standards.

Professional Standards

The implementation checklist for code quality, security, accessibility, performance, reliability, API design, documentation, DevOps, privacy, UX, and maintainability is in docs/software-standards.md.