@ryuenn3123/agentic-senior-core 3.0.40 → 3.0.42
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/.agent-context/prompts/bootstrap-design.md +8 -9
- package/.agent-context/prompts/init-project.md +1 -1
- package/.agent-context/review-checklists/pr-checklist.md +2 -0
- package/.agent-context/rules/frontend-architecture.md +4 -0
- package/.agent-context/state/README.md +1 -3
- package/.agent-context/state/benchmark-reproducibility.json +4 -4
- package/.cursor/rules/agentic-senior-core.mdc +1 -1
- package/.cursorrules +1 -1
- package/.gemini/instructions.md +1 -1
- package/.github/copilot-instructions.md +1 -1
- package/.github/instructions/agentic-senior-core.instructions.md +1 -1
- package/.instructions.md +1 -0
- package/.windsurf/rules/agentic-senior-core.md +1 -1
- package/.windsurfrules +1 -1
- package/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/CONTRIBUTING.md +7 -1
- package/GEMINI.md +1 -1
- package/README.md +1 -1
- package/lib/cli/backup.mjs +1 -3
- package/lib/cli/commands/init.mjs +1 -1
- package/lib/cli/constants.mjs +5 -3
- package/lib/cli/rollback.mjs +1 -2
- package/lib/cli/utils/managed-surface.mjs +4 -4
- package/lib/cli/utils.mjs +33 -11
- package/mcp.json +39 -24
- package/package.json +2 -4
- package/scripts/benchmark-evidence-bundle.mjs +8 -16
- package/scripts/benchmark-intelligence.mjs +14 -121
- package/scripts/benchmark-writer-judge-matrix.mjs +2 -6
- package/scripts/bump-version.mjs +3 -3
- package/scripts/clean-local-artifacts.mjs +1 -0
- package/scripts/docs-quality-drift-report.mjs +1 -1
- package/scripts/frontend-usability-audit.mjs +4 -4
- package/scripts/mcp-server/constants.mjs +4 -0
- package/scripts/release-gate/static-checks.mjs +0 -1
- package/scripts/validate/config.mjs +2 -2
- package/scripts/validate.mjs +8 -84
- package/.agent-context/state/benchmark-watchlist.json +0 -19
- package/.agent-context/state/stack-research-snapshot.json +0 -112
- package/.github/ISSUE_TEMPLATE/v1.7-frontend-work-item.yml +0 -54
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
name: V1.7 Frontend Work Item
|
|
2
|
-
description: Track a V1.7 frontend task with quality-gate ready acceptance criteria.
|
|
3
|
-
title: "[V1.7][QX] "
|
|
4
|
-
labels:
|
|
5
|
-
- v1.7
|
|
6
|
-
body:
|
|
7
|
-
- type: textarea
|
|
8
|
-
id: background
|
|
9
|
-
attributes:
|
|
10
|
-
label: Background
|
|
11
|
-
description: Why this item exists and what user problem it addresses.
|
|
12
|
-
validations:
|
|
13
|
-
required: true
|
|
14
|
-
- type: textarea
|
|
15
|
-
id: scope
|
|
16
|
-
attributes:
|
|
17
|
-
label: Scope
|
|
18
|
-
description: What is included in this issue.
|
|
19
|
-
validations:
|
|
20
|
-
required: true
|
|
21
|
-
- type: textarea
|
|
22
|
-
id: out_of_scope
|
|
23
|
-
attributes:
|
|
24
|
-
label: Out of Scope
|
|
25
|
-
description: What is intentionally excluded.
|
|
26
|
-
validations:
|
|
27
|
-
required: true
|
|
28
|
-
- type: textarea
|
|
29
|
-
id: acceptance_criteria
|
|
30
|
-
attributes:
|
|
31
|
-
label: Acceptance Criteria
|
|
32
|
-
description: Use measurable and testable criteria.
|
|
33
|
-
placeholder: |
|
|
34
|
-
- [ ] ...
|
|
35
|
-
- [ ] ...
|
|
36
|
-
validations:
|
|
37
|
-
required: true
|
|
38
|
-
- type: textarea
|
|
39
|
-
id: dependencies
|
|
40
|
-
attributes:
|
|
41
|
-
label: Dependencies
|
|
42
|
-
description: Link prerequisite issues or blockers.
|
|
43
|
-
- type: textarea
|
|
44
|
-
id: definition_of_done
|
|
45
|
-
attributes:
|
|
46
|
-
label: Definition of Done
|
|
47
|
-
description: Include testing, documentation, and evidence requirements.
|
|
48
|
-
validations:
|
|
49
|
-
required: true
|
|
50
|
-
- type: textarea
|
|
51
|
-
id: evidence
|
|
52
|
-
attributes:
|
|
53
|
-
label: Evidence
|
|
54
|
-
description: Screenshots, benchmark output, links to reports.
|