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

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog

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 - josipmusa/jds: JDS skill suite for agentic codin...
anaq42 · 2026-05-15 · via Hacker News - Newest: "AI"

A skill suite that makes your AI coding assistant follow a real software development process.

JDS is a GitHub Copilot CLI plugin that enforces structured workflows — design before code, tests before implementation, evidence before completion claims. It turns your AI pair programmer from a code-spewing autocomplete into a disciplined software engineer that can work for hours on complex tasks without losing context or getting lost.

Why?

AI coding assistants are powerful but undisciplined. Without structure, they:

  • Skip design and jump straight to code
  • Write tests after implementation (or not at all)
  • Claim "it works" without running anything
  • Lose track of progress mid-task
  • Fix symptoms instead of root causes

JDS fixes this by enforcing a skill-based workflow that gates every phase of development.

The Workflow

Session start
    ↓
jds-bootstrap   → Auto-injected via the SessionStart hook. Enforces the skill-check rule.
    ↓
User Request
    ↓
jds-think       → Explore, clarify, design, write spec
    ↓
jds-plan        → Break spec into atomic, verifiable tasks
    ↓
jds-execute     → Worker-pool scheduler dispatches tasks to isolated subagents
    ├── jds-tdd     → RED → GREEN → REFACTOR (every time)
    └── jds-debug   → Systematic root-cause analysis (when things break)
    ↓
jds-verify      → Evidence-based completion (actual output, not "I think it works")
    ↓
jds-finish      → Clean up working artifacts

Every task passes through this pipeline. Simple tasks get a lightweight pass. Complex tasks get the full treatment. But nothing skips the process entirely.

Skills

Skill Type What It Does
jds-bootstrap Flexible Session entry point. Enforces skill-check before any action.
jds-think Flexible The design gate. Explores codebase, asks clarifying questions, proposes approaches, writes specs.
jds-plan Flexible Translates specs into atomic tasks (2-5 min each). No placeholders, no hand-waving.
jds-execute Flexible Runs tasks via a worker-pool scheduler of isolated subagents. Tops up freed slots the moment any subagent completes — independent tasks run concurrently up to a configurable cap.
jds-tdd Rigid Enforces RED-GREEN-REFACTOR. Tests first, always. Code written before tests? Delete it.
jds-refactor Rigid Safe structural changes with behavioral equivalence verification. Tests must pass before and after.
jds-debug Rigid 4-phase root-cause analysis: Investigate → Analyze → Hypothesize → Fix. No symptom-patching.
jds-verify Rigid Requires actual command output as evidence. "I believe this works" is not verification.
jds-finish Rigid Cleans up specs, plans, and tracking state. Does not commit — that's your job.

Rigid skills follow exact protocols. No adaptation, no shortcuts. Flexible skills adapt to context but maintain their structure.

Agents

Agent Role
explainer Translates code and systems into clear explanations
code-reviewer Senior reviewer focused on security, quality, and correctness
tester QA engineer that writes tests using When_Action_Expect_Result naming

Commands

Command What It Does
code-review Reviews current branch or a specific PR
security-audit-review Deep security audit — read-only, produces a report

Visualization

JDS ships a task graph visualization server (tools/viz) that renders your session's todo dependency graph in real time. It starts automatically when jds-execute begins and shuts down when the session ends.

Task visualization running at http://localhost:3847

The UI shows each task as a node, colored by status:

Color Status
🔵 Blue (pulsing) in_progress
🔴 Red (pulsing) blocked
🟢 Green done
⬜ Neutral pending

Edges represent dependencies — an arrow from A to B means B depends on A. The graph updates live via WebSocket as tasks change state. If port 3847 is in use, the server picks the next free port automatically.

Note: The visualization server may take longer to complete npm install and npm run build, depending on your environment. To avoid delays, you can run these steps in advance to generate the dist/ folder, or instruct your agent to execute them before starting your first JDS session.

Installation

Step 1: Add the marketplace

copilot plugin marketplace add josipmusa/jds

Step 2: Install the plugin

copilot plugin install jds@jds-marketplace

Or, from within an interactive Copilot CLI session, use the slash command equivalents:

/plugin marketplace add josipmusa/jds
/plugin install jds@jds-marketplace

Quick Start

Once installed, JDS activates automatically at session start — the SessionStart hook (defined in hooks/hooks.json) injects the jds-bootstrap skill context into every new session, so you never have to invoke skills manually. The typical flow for any non-trivial task:

jds-think      → clarify requirements, write a spec
jds-plan       → break the spec into atomic tasks
jds-execute    → implement via isolated subagents (TDD enforced)
jds-verify     → confirm everything works with real output
jds-finish     → clean up working artifacts

Key Principles

Design Before Code

Every task passes through jds-think before any code is written. A 2-minute design for a simple task is fine. Skipping design entirely is not.

Tests Before Implementation

jds-tdd enforces RED-GREEN-REFACTOR on every code change. If code exists before a test, delete it and start over. This is not negotiable.

Evidence Over Claims

jds-verify requires actual command output — not summaries, not reasoning, not "I believe this works." Run the tests. Show the output.

Context Isolation

Subagents never inherit session history. Each task gets a focused, self-contained prompt with only what it needs. This prevents stale assumptions and forces verifiable outputs.

No Placeholders

Plans contain complete code, not "add validation" or "handle edge cases." Every task must be executable by a subagent without inferring intent.

Copilot Instructions

JDS ships with a set of general-purpose copilot instructions at instructions/copilot-instructions.md — inspired by Andrej Karpathy's coding agent guidelines. These are opinionated defaults that complement the skill suite:

  • Think before coding — state assumptions, surface ambiguity, ask instead of guessing
  • Simplicity first — minimum code that solves the problem, no speculative abstractions
  • Surgical changes — change only what's requested, match existing patterns
  • Goal-driven execution — define success criteria with exact verification commands
  • No design artifacts in commits — JDS working files are cleaned up before any git operation

We recommend copying these instructions into your global Copilot instructions file (typically ~/.copilot/copilot-instructions.md) so they apply across all your projects. If you already have your own instructions, JDS respects the priority chain: your instructions > JDS skills > system defaults.

Acknowledgements

JDS is an adaptation of the superpowers repository by @obra (Jesse Vincent), used under the MIT License. The core philosophy — skill-based enforcement of software development discipline for AI agents — originates from that project. JDS adapts the concepts, restructures the skills for Copilot's plugin system, and adds Copilot-specific features like SQL-based task tracking. See ATTRIBUTION.md.

License

MIT