@pilotspace/add 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +9 -0
- package/SECURITY.md +48 -0
- package/package.json +4 -3
- package/skill/add/SKILL.md +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ All notable changes to the ADD method (`@pilotspace/add` on npm,
|
|
|
4
4
|
`pilotspace-add` on PyPI) are documented here. The format follows
|
|
5
5
|
[Keep a Changelog](https://keepachangelog.com/); versions follow semver.
|
|
6
6
|
|
|
7
|
+
## [1.7.2] — 2026-06-18
|
|
8
|
+
|
|
9
|
+
Test-coverage and project-hygiene patch. Additive; no breaking changes.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **PTY harness for clack interactive coverage (`installer-smarts-polish`)** — a
|
|
13
|
+
reusable PTY test helper (`tooling/pty_clack.py`) drives the clack
|
|
14
|
+
select/confirm prompts, so the agent-select step and the interactive
|
|
15
|
+
happy-path are exercised under a real pseudo-terminal in CI (previously
|
|
16
|
+
node-syntax-checked and logic-unit-tested only).
|
|
17
|
+
- **`SECURITY.md` security policy** — supported-version table, private
|
|
18
|
+
vulnerability reporting via GitHub Security Advisories, and response SLAs;
|
|
19
|
+
shipped in both the npm tarball and the PyPI sdist/wheel.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- **Brand tagline** — refreshed to *"One skill. Eight steps. Five disciplines.
|
|
23
|
+
Every feature ships through the loop."* across the README, the npm/PyPI
|
|
24
|
+
package descriptions, and the Claude Code plugin manifest.
|
|
25
|
+
|
|
7
26
|
## [1.7.1] — 2026-06-18
|
|
8
27
|
|
|
9
28
|
Installer depth and method quality release: the onboarding installer gains
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# ADD — AI-Driven Development
|
|
2
2
|
|
|
3
|
+
**One skill. Eight steps. Five disciplines. Every feature ships through the loop.**
|
|
4
|
+
|
|
3
5
|
> A minimal, state-tracked Claude Code skill for building software when the AI
|
|
4
6
|
> writes the code and **you** own the two things it cannot do alone: decide *what*
|
|
5
7
|
> to build, and *verify* it is correct.
|
|
@@ -149,6 +151,13 @@ be upset to lose is "the code," you're still working the old way.
|
|
|
149
151
|
Start at [`docs/README.md`](./docs/README.md) — Foundations → the six steps →
|
|
150
152
|
operating it across a team → templates, prompts, and a full worked example.
|
|
151
153
|
|
|
154
|
+
## What's next
|
|
155
|
+
|
|
156
|
+
**Dynamic Agent Skills** — the next scope: skills that adapt at runtime to the
|
|
157
|
+
project's current state, stage, and active phase rather than loading a static
|
|
158
|
+
guide. The agent picks the right depth and tooling automatically as the project
|
|
159
|
+
evolves.
|
|
160
|
+
|
|
152
161
|
## Develop
|
|
153
162
|
|
|
154
163
|
```bash
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
ADD (AI-Driven Development) ships as [`@pilotspace/add`](https://www.npmjs.com/package/@pilotspace/add)
|
|
4
|
+
on npm and [`pilotspace-add`](https://pypi.org/project/pilotspace-add/) on PyPI. This policy
|
|
5
|
+
covers both distributions and the engine/tooling in this repository.
|
|
6
|
+
|
|
7
|
+
## Supported Versions
|
|
8
|
+
|
|
9
|
+
Security fixes land on the latest minor release line. Older lines are not
|
|
10
|
+
back-patched — upgrade to the latest `1.7.x` to receive fixes.
|
|
11
|
+
|
|
12
|
+
| Version | Supported |
|
|
13
|
+
| ------- | ------------------ |
|
|
14
|
+
| 1.7.x | :white_check_mark: |
|
|
15
|
+
| < 1.7 | :x: |
|
|
16
|
+
|
|
17
|
+
To check your installed version: `python3 .add/tooling/add.py status` (project),
|
|
18
|
+
`pip show pilotspace-add`, or `npm ls @pilotspace/add`.
|
|
19
|
+
|
|
20
|
+
## Reporting a Vulnerability
|
|
21
|
+
|
|
22
|
+
**Please do not open a public GitHub issue for security reports.**
|
|
23
|
+
|
|
24
|
+
Report privately through one of:
|
|
25
|
+
|
|
26
|
+
- **GitHub Security Advisories** (preferred) — open a private report via the
|
|
27
|
+
repository's **Security → Report a vulnerability** tab. This keeps the details
|
|
28
|
+
confidential until a fix ships.
|
|
29
|
+
- **Email** — `tindang.ht97@gmail.com` with subject `SECURITY: <short summary>`.
|
|
30
|
+
|
|
31
|
+
Please include:
|
|
32
|
+
|
|
33
|
+
- the affected version, platform, and install channel (npm / PyPI / source);
|
|
34
|
+
- a description of the issue and its impact;
|
|
35
|
+
- reproduction steps or a proof of concept, if available.
|
|
36
|
+
|
|
37
|
+
### What to expect
|
|
38
|
+
|
|
39
|
+
- **Acknowledgement** within **3 business days** of your report.
|
|
40
|
+
- **Triage assessment** (accepted / needs-info / declined, with rationale)
|
|
41
|
+
within **10 business days**.
|
|
42
|
+
- For **accepted** reports: a coordinated fix and release, with credit to you in
|
|
43
|
+
the release notes unless you prefer to remain anonymous. We will keep you
|
|
44
|
+
updated on remediation progress.
|
|
45
|
+
- For **declined** reports: an explanation of why the issue falls outside the
|
|
46
|
+
project's threat model.
|
|
47
|
+
|
|
48
|
+
Please give us a reasonable window to release a fix before any public disclosure.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pilotspace/add",
|
|
3
|
-
"version": "1.7.
|
|
4
|
-
"description": "ADD (AI-Driven Development)
|
|
3
|
+
"version": "1.7.2",
|
|
4
|
+
"description": "ADD (AI-Driven Development). One skill. Eight steps. Five disciplines. Every feature ships through the loop — a minimal, state-tracked Claude Code skill that ships the AIDD book as its trust layer.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"add": "bin/cli.js"
|
|
7
7
|
},
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"docs/",
|
|
24
24
|
"README.md",
|
|
25
25
|
"GETTING-STARTED.md",
|
|
26
|
-
"CHANGELOG.md"
|
|
26
|
+
"CHANGELOG.md",
|
|
27
|
+
"SECURITY.md"
|
|
27
28
|
],
|
|
28
29
|
"keywords": [
|
|
29
30
|
"ai-driven-development",
|
package/skill/add/SKILL.md
CHANGED
|
@@ -85,7 +85,9 @@ unsharp intent? **Interview before you size** — explore and suggest first (`in
|
|
|
85
85
|
Once a request is classified `new-major`/`sub-milestone`, drafting the actual
|
|
86
86
|
`MILESTONE.md` (goal · scope · exit criteria · breadth-first tasks) is the second
|
|
87
87
|
half of intake: read `scope.md` for how to fill it well, the per-outcome behavior,
|
|
88
|
-
and the confirm-before-create rule.
|
|
88
|
+
and the confirm-before-create rule. Or if it's classified `task`/`change-request`,
|
|
89
|
+
create the task with `add.py new-task` and then read the phase guide for the first phase (probably `0-setup.md`).
|
|
90
|
+
You propose the draft; the human confirms.
|
|
89
91
|
|
|
90
92
|
## The flow and which file to load
|
|
91
93
|
|