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

推荐订阅源

V
V2EX
P
Proofpoint News Feed
D
DataBreaches.Net
C
Check Point Blog
L
LangChain Blog
量子位
美团技术团队
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42
腾讯CDC
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale

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 - swenyai/sweny: AI-powered engineering workflows ...
wickdninja · 2026-05-13 · via Hacker News - Newest: "AI"

SWEny

AI workflows as code. Describe what you want, get a reliable DAG.

CI npm License Docs Marketplace


Quickstart

npx create-sweny            # pick a workflow → auto-detects providers → done
sweny workflow run .sweny/workflows/pr-review.yml

Or if you already have @sweny-ai/core installed:

sweny new

Already have a .sweny.yml? sweny new adds additional workflows non-destructively.

Build a workflow from scratch — pick "Describe your own" in the sweny new picker, or:

sweny workflow create "review PRs for security issues and code quality"
sweny workflow run .sweny/workflows/pr-review.yml

# Visualize any workflow as a Mermaid diagram — drop it into a PR or README
sweny workflow diagram .sweny/workflows/pr-review.yml -o pr-review.mmd

Keep the CLI current:

sweny upgrade          # pulls the latest @sweny-ai/core via your package manager
sweny upgrade --check  # dry-run: just report the available version

Browse marketplace.sweny.ai for ready-to-run workflows.

What it does

Describe a task in plain English. SWEny builds a DAG of focused AI agents — each node gets its own MCP tool set scoped by the skills it declares, structured output, and conditional routing. Every tool call is tracked. (The underlying Claude Code agent process keeps its built-in tools available so nodes stay agentic inside their box; see ARCHITECTURE.md for the exact capability contract.)

$ sweny workflow create "audit our repo for security issues, \
    scan dependencies, and create Linear tickets for anything critical"

  GitHub Security Audit

  o Scan Recent Commits for Exposed Secrets
  |
  +---> o Review Open PRs for Security Changes
  +---> o Scan Dependencies for Vulnerabilities
       |
  o Compile Security Posture Report
  |
  o Create Linear Tickets for Critical Findings

  Save to .sweny/workflows/github_security_audit.yml? [Y/n/refine]

Use it anywhere

Surface What it does
CLI Build, run, and publish workflows from your terminal
GitHub Action Run any workflow on CI — plus dedicated triage and e2e actions
Studio Visual DAG editor and live execution monitor
Claude Code Plugin Slash commands, MCP tools, and an isolated workflow agent
Marketplace Browse, fork, and share community workflows

Custom skills

Extend any workflow with your own skills. Scaffold one in a single command:

sweny skill new code-standards -d "Team TypeScript conventions"
sweny skill list

Or write the file by hand at .sweny/skills/code-standards/SKILL.md:

.sweny/skills/code-standards/SKILL.md
---
name: code-standards
description: Team coding conventions for TypeScript
---

When reviewing TypeScript code:
- Use camelCase for variables and functions
- Every public function needs at least one test
- Mock at boundaries (HTTP, DB), not internal functions

Then reference it in any workflow node:

nodes:
  review:
    name: Code Review
    instruction: Review the pull request.
    skills: [code-standards, github]

Skills are cross-tool compatible — the same SKILL.md works in Claude Code, Codex, and Gemini CLI. Write once, use everywhere. Learn more.

Built-in skills

Set the credential, the skill is ready. No configuration.

Skill What it does
github Search code, read files, create issues, open PRs
linear Create, search, and update issues
sentry Query errors, issues, and stack traces
datadog Query logs, metrics, and monitors
betterstack Query incidents, monitors, and logs
slack Send messages via webhook or bot API
notification Discord, Teams, email, generic webhooks

GitHub Actions

# Run any workflow on CI
- uses: swenyai/sweny@v5
  with:
    workflow: .sweny/workflows/security-audit.yml
    claude-oauth-token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
  env:
    LINEAR_API_KEY: ${{ secrets.LINEAR_API_KEY }}

Focused actions for common use cases:

Action Purpose
swenyai/sweny@v5 Run any workflow YAML
swenyai/triage@v1 SRE triage — observability + issue tracker
swenyai/e2e@v1 Agentic E2E browser tests

Cloud reporting (optional)

SWEny runs locally or in CI with zero phone-home behavior by default. To enable the cloud dashboard at cloud.sweny.ai:

  1. Sign up and link your repo — the GitHub App handles this in one click.
  2. Copy the CI reporting token from your project page (starts with sweny_pk_).
  3. Add it as a GitHub Actions secret named SWENY_CLOUD_TOKEN.
  4. Expose it to the Action:
- uses: swenyai/sweny@v5
  with:
    workflow: .sweny/workflows/security-audit.yml
    claude-oauth-token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
  env:
    SWENY_CLOUD_TOKEN: ${{ secrets.SWENY_CLOUD_TOKEN }}

Without SWENY_CLOUD_TOKEN, the Action performs no network calls to sweny.ai. No anonymous telemetry, no pings, nothing.

See PRIVACY.md for the full data policy.

Publish to the marketplace

Share your workflows and skills with the community:

sweny publish   # interactive CLI — publish a workflow or skill

Packages

Package Description
@sweny-ai/core Skills, DAG executor, CLI, workflows
create-sweny npx create-sweny — thin wrapper around sweny new
@sweny-ai/studio Visual DAG editor and execution monitor
@sweny-ai/mcp MCP server for Claude Code / Desktop

Links

Development

npm install          # install all dependencies
npm run build        # build all packages
npm test             # run all tests

License

MIT