rdap-q 1.2.1 → 1.2.5
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/.agents/plugins/rdap-q/plugin.json +1 -1
- package/.agents/skills/rdap-q/README.md +1 -1
- package/.agents/skills/rdap-q/SKILL.md +17 -3
- package/.agents/skills/rdap-q/core/controller.md +3 -3
- package/.agents/skills/rdap-q/core/gates.md +1 -1
- package/.agents/skills/rdap-q/core/memory.md +37 -3
- package/.agents/skills/rdap-q/install/install-unix.sh +1 -1
- package/.agents/skills/rdap-q/manifest.json +1 -1
- package/.agents/skills/rdap-q/memory/README.md +3 -0
- package/.agents/skills/rdap-q/memory/index.md +3 -0
- package/.agents/skills/rdap-q/playbooks/00-bootstrap.md +5 -2
- package/.agents/skills/rdap-q/playbooks/06-final-audit.md +3 -2
- package/.agents/skills/rdap-q/state/README.md +2 -0
- package/.claude/commands/rdapq.md +1 -1
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin-index.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.clinerules +1 -1
- package/.codex/skill.json +1 -1
- package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/.github/copilot-instructions.md +1 -1
- package/.goosehints +1 -1
- package/.grok/rules.md +1 -1
- package/.grok/skill.json +1 -1
- package/.grok-plugin/marketplace.json +1 -1
- package/.grok-plugin/plugin-index.json +1 -1
- package/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/GEMINI.md +1 -1
- package/README.md +90 -224
- package/agentskills.json +1 -1
- package/install.ps1 +2 -2
- package/install.sh +2 -2
- package/lib/installer.js +43 -27
- package/manifest.json +1 -1
- package/marketplace.json +1 -1
- package/package.json +3 -2
- package/plugin.json +1 -1
- package/plugins/rdap-q/plugin.json +1 -1
- package/plugins/rdap-q/skills/rdap-q/README.md +1 -1
- package/plugins/rdap-q/skills/rdap-q/SKILL.md +17 -3
- package/plugins/rdap-q/skills/rdap-q/core/controller.md +3 -3
- package/plugins/rdap-q/skills/rdap-q/core/gates.md +1 -1
- package/plugins/rdap-q/skills/rdap-q/core/memory.md +37 -3
- package/plugins/rdap-q/skills/rdap-q/install/install-unix.sh +1 -1
- package/plugins/rdap-q/skills/rdap-q/manifest.json +1 -1
- package/plugins/rdap-q/skills/rdap-q/memory/README.md +3 -0
- package/plugins/rdap-q/skills/rdap-q/memory/index.md +3 -0
- package/plugins/rdap-q/skills/rdap-q/playbooks/00-bootstrap.md +5 -2
- package/plugins/rdap-q/skills/rdap-q/playbooks/06-final-audit.md +3 -2
- package/plugins/rdap-q/skills/rdap-q/state/README.md +2 -0
- package/rdap-q-skill/README.md +1 -1
- package/rdap-q-skill/SKILL.md +17 -3
- package/rdap-q-skill/core/controller.md +3 -3
- package/rdap-q-skill/core/gates.md +1 -1
- package/rdap-q-skill/core/memory.md +37 -3
- package/rdap-q-skill/install/install-unix.sh +1 -1
- package/rdap-q-skill/manifest.json +1 -1
- package/rdap-q-skill/memory/README.md +3 -0
- package/rdap-q-skill/memory/index.md +3 -0
- package/rdap-q-skill/playbooks/00-bootstrap.md +5 -2
- package/rdap-q-skill/playbooks/06-final-audit.md +3 -2
- package/rdap-q-skill/state/README.md +2 -0
- package/scripts/harness-audit/check.py +387 -0
- package/scripts/harness-audit/vendors.json +192 -0
- package/scripts/harness-audit/weekly.sh +22 -0
- package/skills.json +1 -1
|
@@ -4,14 +4,26 @@ description: Run the RDAP-Q evidence-first engineering protocol. Invoke with /rd
|
|
|
4
4
|
disable-model-invocation: true
|
|
5
5
|
---
|
|
6
6
|
name: rdap-q
|
|
7
|
-
version: "1.2.
|
|
7
|
+
version: "1.2.5"
|
|
8
8
|
description: Evidence-first engineering protocol. Load this file, then the current phase playbook only.
|
|
9
9
|
invocation: /rdapq
|
|
10
10
|
home_env: RDAPQ_HOME
|
|
11
11
|
home: RDAPQ_HOME else ~/.rdapq (Windows %USERPROFILE%\.rdapq)
|
|
12
12
|
state: .rdapq/state
|
|
13
13
|
memory: $RDAPQ_HOME/memory
|
|
14
|
+
memory_index: $RDAPQ_HOME/memory/index.md
|
|
14
15
|
facts: [OBSERVED, USER_SPECIFIED, VERIFIED_EXTERNAL, INFERRED, UNKNOWN]
|
|
16
|
+
memory_caps:
|
|
17
|
+
load_full_records: 12
|
|
18
|
+
load_index_rows: 80
|
|
19
|
+
fact_chars: 240
|
|
20
|
+
evidence_chars: 160
|
|
21
|
+
file_bytes: 24576
|
|
22
|
+
global_active: 80
|
|
23
|
+
project_active: 40
|
|
24
|
+
state_evidence_records: 80
|
|
25
|
+
state_iteration_rounds: 20
|
|
26
|
+
state_file_bytes: 49152
|
|
15
27
|
rules:
|
|
16
28
|
- evidence before inference; never invent paths, APIs, versions, flags, tests, env, or architecture
|
|
17
29
|
- INFERRED or UNKNOWN cannot decide implementation when verification is possible
|
|
@@ -21,12 +33,14 @@ rules:
|
|
|
21
33
|
- task state stays in .rdapq/state; memory is reusable only; current evidence beats memory
|
|
22
34
|
- never store secret values; a source plus an identifier is allowed
|
|
23
35
|
- do not load manifest.json, other playbooks, diagrams, or bulk memory
|
|
36
|
+
- load memory/index.md first, then at most 12 matching full records; compact before work if over cap
|
|
37
|
+
- never bulk-read memory/ or projects/; never gzip, base64, or one-line-tarball memory
|
|
24
38
|
commands:
|
|
25
39
|
status: phase, quality, confidence, gates, blockers, iteration
|
|
26
40
|
score: evidence-linked scorecard
|
|
27
41
|
audit: adversarial final audit
|
|
28
|
-
resume: reload
|
|
29
|
-
memory: relevant memories and status; never print secrets
|
|
42
|
+
resume: compact if over cap, reload index and hits plus state, then check drift
|
|
43
|
+
memory: relevant ACTIVE memories and status; never print secrets; never dump the store
|
|
30
44
|
research: discovery
|
|
31
45
|
explain: why this phase or exit
|
|
32
46
|
weights: {correctness: 25, coverage: 15, verification: 15, integration: 10, security: 10, maintainability: 10, architecture: 8, operability: 7}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
when: whole_loop_or_ambiguous_next_state
|
|
2
2
|
order:
|
|
3
3
|
- resolve home; if unwritable, record it and use repo state
|
|
4
|
-
- load SKILL.md, repo root,
|
|
4
|
+
- load SKILL.md, repo root, memory index, compact if over cap, then at most 12 hits, then .rdapq/state if present
|
|
5
5
|
- load the current playbook only; observe before acting
|
|
6
6
|
- update facts, assumptions, evidence, risks, decisions
|
|
7
7
|
- milestone: verify, review, score, gate, decide, persist
|
|
8
8
|
- invalid plan -> PLAN; worthwhile fix -> iterate
|
|
9
9
|
- gates pass and diminishing -> audit, then COMPLETE
|
|
10
10
|
- else emit the accurate non-complete terminal state
|
|
11
|
-
- promote only durable lessons
|
|
11
|
+
- promote only durable lessons that pass write_forbid and caps
|
|
12
12
|
precedence: [user_intent, direct_evidence, repo_state, project_memory, global_memory, external_for_this_version, inference]
|
|
13
13
|
replan_if_changes: [scope, architecture, dependencies, sequencing, risk, verification, success_criteria]
|
|
14
|
-
context: targeted reads; do not replay chat or load the whole skill tree
|
|
14
|
+
context: targeted reads; do not replay chat or load the whole skill tree; never bulk-read memory/
|
|
@@ -8,5 +8,5 @@ gates:
|
|
|
8
8
|
regression: [existing_tests_pass, no_known_material_regression]
|
|
9
9
|
security: [no_new_material_issue, no_secrets_stored, destructive_safeguards, risk_proportional_checks]
|
|
10
10
|
repository: [diff_reviewed, no_unintended_files, no_conflicts, state_understood, unrelated_work_kept]
|
|
11
|
-
memory: [no_secrets, promotion_test, stale_handled, state_not_promoted_as_global]
|
|
11
|
+
memory: [no_secrets, promotion_test, stale_handled, state_not_promoted_as_global, under_cap, index_current]
|
|
12
12
|
quality: target_met_or_diminishing_returns_and_other_gates_pass
|
|
@@ -2,10 +2,44 @@ scopes:
|
|
|
2
2
|
global: "$RDAPQ_HOME/memory/{engineering-preferences,tooling,lessons,patterns,constraints}.md"
|
|
3
3
|
project: "$RDAPQ_HOME/projects/<id>/{project,architecture,lessons,decisions}.md"
|
|
4
4
|
task: .rdapq/state
|
|
5
|
+
index: "$RDAPQ_HOME/memory/index.md"
|
|
6
|
+
load: index_then_hits
|
|
5
7
|
promote_if_all: [durable, reusable, material, safe, grounded]
|
|
6
8
|
record: {id: M-<id>, scope: "global|project:<id>", status: [ACTIVE, STALE, SUPERSEDED, INVALID], class: [USER_SPECIFIED, OBSERVED, VERIFIED_EXTERNAL, INFERRED], confidence: "0-10", verified: YYYY-MM-DD, supersedes: "id|none", superseded_by: "id|none", fact: str, evidence: str}
|
|
9
|
+
index_row: {id: M-<id>, kind: str, scope: "global|project:<id>", status: str, class: str, one_line: str}
|
|
7
10
|
secrets: never values; source plus identifier only
|
|
8
11
|
on_conflict: trust direct evidence; mark STALE, SUPERSEDED, or INVALID; link ids; do not silent-delete
|
|
9
|
-
|
|
10
|
-
memory_cmd: relevant entries, status, conflicts; never print secrets
|
|
11
|
-
resume: home,
|
|
12
|
+
load_order: relevant index rows, then matching full records, project before global
|
|
13
|
+
memory_cmd: relevant ACTIVE entries, status, conflicts; never print secrets; never dump the store
|
|
14
|
+
resume: home, index, compact if over cap, load hits, repo state, last phase, inspect drift, continue at first unverified step
|
|
15
|
+
caps:
|
|
16
|
+
load_full_records: 12
|
|
17
|
+
load_index_rows: 80
|
|
18
|
+
fact_chars: 240
|
|
19
|
+
evidence_chars: 160
|
|
20
|
+
file_bytes: 24576
|
|
21
|
+
global_active: 80
|
|
22
|
+
project_active: 40
|
|
23
|
+
state_evidence_records: 80
|
|
24
|
+
state_iteration_rounds: 20
|
|
25
|
+
state_file_bytes: 49152
|
|
26
|
+
refuse:
|
|
27
|
+
- bulk_read of memory/ or projects/
|
|
28
|
+
- diagrams (.mmd)
|
|
29
|
+
- manifest.json
|
|
30
|
+
- playbooks other than current phase
|
|
31
|
+
- gzip, base64, or one-line tarball encodings
|
|
32
|
+
write_forbid:
|
|
33
|
+
- secret values
|
|
34
|
+
- command output, diffs, logs, chat
|
|
35
|
+
- INFERRED when verification was possible
|
|
36
|
+
- duplicate of an ACTIVE one_line
|
|
37
|
+
- fact longer than fact_chars
|
|
38
|
+
- evidence longer than evidence_chars
|
|
39
|
+
- promoting .rdapq/state into global memory
|
|
40
|
+
on_cap:
|
|
41
|
+
stop_append: true
|
|
42
|
+
compact: [STALE, SUPERSEDED, INVALID]
|
|
43
|
+
overflow: archive to memory/archive/YYYY-MM.md
|
|
44
|
+
say: "MEMORY_CAP — compacted, not loaded"
|
|
45
|
+
over_cap_without_safe_compact: stop promoting; emit MEMORY_CAP; do not keep appending
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env sh
|
|
2
2
|
# Install the skill tree into $RDAPQ_HOME. Stage first, swap only after SKILL.md
|
|
3
3
|
# is present, so a failed copy cannot delete a working install.
|
|
4
|
-
# Prefer the repo installer (./install.sh or npx
|
|
4
|
+
# Prefer the repo installer (./install.sh or npx rdap-q) when you have the full checkout.
|
|
5
5
|
set -eu
|
|
6
6
|
|
|
7
7
|
SOURCE_DIR="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
phase: BOOTSTRAP
|
|
2
2
|
do:
|
|
3
3
|
- resolve home from SKILL.md; if unwritable, record that and use repo state only
|
|
4
|
-
- read
|
|
4
|
+
- read memory/index.md; do not bulk-load memory/ or projects/
|
|
5
|
+
- if any memory or state file exceeds SKILL.md memory_caps, compact first: archive overflow, mark STALE/SUPERSEDED out of the load set, rewrite the index
|
|
6
|
+
- if compact would require guessing, emit MEMORY_CAP, stop promoting, continue with repo state only
|
|
7
|
+
- load at most 12 matching full records (project before global, ACTIVE only)
|
|
5
8
|
- inspect root, status, branch, remotes, worktrees, languages, manifests, lockfiles, test, CI
|
|
6
9
|
- do not assume main, a remote, or a package manager
|
|
7
10
|
- create .rdapq/state files on first write; do not preload every template
|
|
@@ -14,4 +17,4 @@ inspect:
|
|
|
14
17
|
git_mutation: playbooks/07-git-worktree.md # worktree, commit, push, or audit cleanup only
|
|
15
18
|
out: [scope, assumptions, evidence, risks, iteration-log]
|
|
16
19
|
next: DISCOVERY
|
|
17
|
-
forbid: [imagined_repo, destroying_unrelated_work]
|
|
20
|
+
forbid: [imagined_repo, destroying_unrelated_work, bulk_memory, diagrams, gzip_memory]
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
phase: AUDIT
|
|
2
2
|
stance: disprove completion
|
|
3
|
-
ask: [misread_requirement, unexercised_path, untested_failure, inferred_claim, stale_memory, false_dependency, regression, malformed_input, dependency_down, observable_errors, secrets, races, unintended_interface_change, extra_dependency, debug_or_unused, docs_match, diff_matches_scope]
|
|
4
|
-
memory: [candidates, promotion_test, write_approved_only, invalidate_stale, no_secrets]
|
|
3
|
+
ask: [misread_requirement, unexercised_path, untested_failure, inferred_claim, stale_memory, false_dependency, regression, malformed_input, dependency_down, observable_errors, secrets, races, unintended_interface_change, extra_dependency, debug_or_unused, docs_match, diff_matches_scope, memory_over_cap, index_stale]
|
|
4
|
+
memory: [candidates, promotion_test, write_approved_only, invalidate_stale, no_secrets, under_cap, index_current]
|
|
5
5
|
report: [quality, confidence, coverage, gates, defects, unknowns, history, best_remaining, aqc]
|
|
6
6
|
complete_only_if: all_applicable_gates_pass
|
|
7
|
+
fail_memory_gate_if: [secrets_stored, over_cap_uncompacted, index_missing_when_records_exist, bulk_memory_loaded, state_promoted_as_global]
|
|
7
8
|
say: "Vibe Code Build complete."
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "rdap-q",
|
|
11
|
-
"version": "1.2.
|
|
11
|
+
"version": "1.2.5",
|
|
12
12
|
"description": "Vendor-neutral engineering protocol for evidence-first software development, persistent state, calibrated 0-10 scoring, and diminishing-return exit gates.",
|
|
13
13
|
"category": "development",
|
|
14
14
|
"author": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rdap-q",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"displayName": "RDAP-Q: Adaptive Planning with Quality Gates",
|
|
5
5
|
"description": "Vendor-neutral Research-Driven Adaptive Planning with Quality Gates protocol for Claude Code. Enforces evidence-first engineering, calibrated 0-10 scoring, and diminishing-return exit gates.",
|
|
6
6
|
"author": {
|
package/.clinerules
CHANGED
package/.codex/skill.json
CHANGED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Steps to reproduce the behavior:
|
|
15
|
+
1. Go to '...'
|
|
16
|
+
2. Click on '....'
|
|
17
|
+
3. Scroll down to '....'
|
|
18
|
+
4. See error
|
|
19
|
+
|
|
20
|
+
**Expected behavior**
|
|
21
|
+
A clear and concise description of what you expected to happen.
|
|
22
|
+
|
|
23
|
+
**Screenshots**
|
|
24
|
+
If applicable, add screenshots to help explain your problem.
|
|
25
|
+
|
|
26
|
+
**Desktop (please complete the following information):**
|
|
27
|
+
- OS: [e.g. iOS]
|
|
28
|
+
- Browser [e.g. chrome, safari]
|
|
29
|
+
- Version [e.g. 22]
|
|
30
|
+
|
|
31
|
+
**Smartphone (please complete the following information):**
|
|
32
|
+
- Device: [e.g. iPhone6]
|
|
33
|
+
- OS: [e.g. iOS8.1]
|
|
34
|
+
- Browser [e.g. stock browser, safari]
|
|
35
|
+
- Version [e.g. 22]
|
|
36
|
+
|
|
37
|
+
**Additional context**
|
|
38
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
package/.goosehints
CHANGED
package/.grok/rules.md
CHANGED
package/.grok/skill.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "rdap-q",
|
|
11
|
-
"version": "1.2.
|
|
11
|
+
"version": "1.2.5",
|
|
12
12
|
"description": "Vendor-neutral engineering protocol for evidence-first software development, persistent state, calibrated 0-10 scoring, and diminishing-return exit gates.",
|
|
13
13
|
"category": "development",
|
|
14
14
|
"author": {
|
package/AGENTS.md
CHANGED
package/CLAUDE.md
CHANGED
package/GEMINI.md
CHANGED