Skip to content

Commit 087cdc1

Browse files
committed
Bump version to 1.4.2
Promotes [Unreleased] checkpoint skills work to v1.4.2. Updates version references across spec, plugin manifests, templates, skills, and all stamped artifacts. Spec last_updated set to 2026-05-12. https://claude.ai/code/session_01QTwxzD9j8ds3W1kq6dQ2UX
1 parent 25c951e commit 087cdc1

19 files changed

Lines changed: 42 additions & 35 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"repo": "MSiccDev/ai-context-kit"
1313
},
1414
"description": "Context-aware AI collaboration skills for creating and validating user context, project AGENTS.md files, and skill artifacts across LLM providers.",
15-
"version": "1.4.1",
15+
"version": "1.4.2",
1616
"license": "MIT",
1717
"homepage": "https://github.com/MSiccDev/ai-context-kit",
1818
"repository": "https://github.com/MSiccDev/ai-context-kit",

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
33
"name": "ai-context-kit",
4-
"version": "1.4.1",
4+
"version": "1.4.2",
55
"description": "Context-aware AI collaboration skills for creating and validating user context, project AGENTS.md files, and skill artifacts across LLM providers.",
66
"author": {
77
"name": "MSiccDev Software Development",

AGENTS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- spec_version: 1.4.1 -->
1+
<!-- spec_version: 1.4.2 -->
22

33
# AI Context Kit Agent Guide
44

@@ -11,7 +11,7 @@ This repository distinguishes:
1111

1212
## Source Of Truth And Precedence
1313
Use this order when files differ:
14-
1. **Specification (authoritative, v1.4.1):** `specs/context_aware_ai_session_spec.md`
14+
1. **Specification (authoritative, v1.4.2):** `specs/context_aware_ai_session_spec.md`
1515
2. **Templates (canonical structures):** `templates/*.instructions.md` and `templates/skill_template/SKILL.md`
1616
3. **Skills (canonical operational workflows):** `skills/*/SKILL.md` and skill-local references
1717
4. **Prompts (compatibility wrappers):** `prompts/*.prompt.md` (must defer detailed logic to skills)
@@ -115,7 +115,7 @@ Alias policy:
115115
- Validation: skill-based validation workflows and reports
116116

117117
### Current Objectives
118-
- Keep templates and skills aligned with spec `v1.4.1`.
118+
- Keep templates and skills aligned with spec `v1.4.2`.
119119
- Maintain the AGENTS-first project-context model.
120120
- Preserve deterministic behavior and path stability.
121121
- Reduce duplication and migration noise.
@@ -196,7 +196,7 @@ When `specs/context_aware_ai_session_spec.md` changes, audit and update all impa
196196
- `AGENTS.md`
197197

198198
## Key References
199-
- Specification (v1.4.1): [`specs/context_aware_ai_session_spec.md`](specs/context_aware_ai_session_spec.md)
199+
- Specification (v1.4.2): [`specs/context_aware_ai_session_spec.md`](specs/context_aware_ai_session_spec.md)
200200
- Project operational defaults: this root `AGENTS.md` (Default State For This Repo)
201201
- User context template: [`templates/usercontext_template.instructions.md`](templates/usercontext_template.instructions.md)
202202
- Skill template: [`templates/skill_template/SKILL.md`](templates/skill_template/SKILL.md)

AGENTS.validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- **Score:** 20/20
1515
- **Status:** PASS
1616
- Target file exists and is structurally complete.
17-
- `<!-- spec_version: 1.4.1 -->` comment is present and current — no version warning.
17+
- `<!-- spec_version: 1.4.2 -->` comment is present and current — no version warning.
1818
- Purpose, precedence model, and repository map are explicitly defined.
1919
- Heading structure is scannable and consistent.
2020

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,24 @@ When a new version is released:
1313

1414
## [Unreleased]
1515

16+
---
17+
18+
## [1.4.2] - 2026-05-12
19+
1620
### Added
1721
- **`create-checkpoint` skill** — guided workflow to capture session state as a checkpoint artifact per spec section 4.4, with schema reference and `agents/openai.yaml` sidecar
1822
- **`restore-checkpoint` skill** — guided workflow to load, validate, and restore a checkpoint artifact at session start per spec section 4.4 restore rules, with conflict resolution reference and `agents/openai.yaml` sidecar
23+
- **`checkpoint: true` required field** — added to spec section 4.4.2 schema so checkpoint files are self-identifying; restore validation is now fully spec-backed
1924
- AGENTS.md now references sections 4.4 (Cross-Session Persistence) and 4.5 (Context Compression) with explicit behavioral instructions for both
2025
- Prompts and Codex symlinks added for both new skills
26+
- `SKILL.validation.md` added to `create-checkpoint/` and `restore-checkpoint/` skill folders
2127

2228
### Safe to update from template
2329
- `skills/create-checkpoint/` (new)
2430
- `skills/restore-checkpoint/` (new)
2531
- `.agents/skills/` (two new symlinks)
2632
- `prompts/` (two new prompt files)
33+
- `specs/context_aware_ai_session_spec.md`
2734
- `AGENTS.md`
2835
- `README.md`
2936
- `CHANGELOG.md`

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ai-context-kit/
8181
│ └── context_aware_ai_session_spec.md # Specification for AI session management
8282
8383
├── templates/
84-
│ ├── usercontext_template.instructions.md # Canonical v1.4.1 user context template (authoritative)
84+
│ ├── usercontext_template.instructions.md # Canonical v1.4.2 user context template (authoritative)
8585
│ ├── AGENTS_template.md # Canonical AGENTS template (authoritative)
8686
│ └── skill_template/SKILL.md # Canonical skill template
8787
@@ -114,7 +114,7 @@ ai-context-kit/
114114

115115
---
116116

117-
## Canonical Authority (Spec v1.4.1)
117+
## Canonical Authority (Spec v1.4.2)
118118

119119
When guidance differs across files, use this authority order:
120120

@@ -244,13 +244,13 @@ The following paths are considered **canonical**:
244244
- `AGENTS.md`
245245
- Primary agent entrypoint (repo-specific operational contract)
246246
- `templates/`
247-
- Canonical instruction templates (spec v1.4.1)
247+
- Canonical instruction templates (spec v1.4.2)
248248
- `skills/`
249249
- Canonical workflow skills (`SKILL.md`-based folders)
250250
- `prompts/`
251251
- Composition wrappers for instruction/skill workflows
252252
- `specs/context_aware_ai_session_spec.md`
253-
- Authoritative specification (v1.4.1+)
253+
- Authoritative specification (v1.4.2+)
254254
- Root `README.md`
255255
- Human-facing entry point and workflow documentation
256256

@@ -456,7 +456,7 @@ Each project `AGENTS.md` should define:
456456
- **Languages:** LLMs work best when instructions are in English, but you can include multilingual content in user context if needed (just be aware of potential comprehension issues)
457457
- **Versioning:** Update user context when skills/preferences evolve; update project `AGENTS.md` when phases/objectives change. Ideally, these should live in the same repository as your codebase once they are created.
458458
- **Discoverability:** Semantic file extensions help AI tools identify and load the appropriate instructions automatically
459-
- **Canonical structure:** The templates in `/templates` define the only supported artifact structures for spec v1.4.1
459+
- **Canonical structure:** The templates in `/templates` define the only supported artifact structures for spec v1.4.2
460460
461461
---
462462

docs/spec-rationale.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
context_type: rationale
33
document_type: companion_document
4-
spec_version: 1.4.1
4+
spec_version: 1.4.2
55
created: 2025-10-20
66
last_updated: 2026-05-09
77
status: active
88
---
99

10-
# Spec Rationale & Extended Reference (v1.4.1)
10+
# Spec Rationale & Extended Reference (v1.4.2)
1111

1212
This document is the companion to [`specs/context_aware_ai_session_spec.md`](../specs/context_aware_ai_session_spec.md). It contains the background reasoning, extended examples, project profile illustrations, end-to-end scenarios, and future enhancement notes that were removed from the normative spec to keep it readable.
1313

skills/create-agents-md/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Load or attach this file's contents into your AI session to activate the workflo
3232
1. Run seven-phase discovery using `references/discovery-phases.md`.
3333
2. Apply required element contract from `references/required-elements.md`.
3434
3. Generate artifact using `references/output-format.md`.
35-
4. Stamp `<!-- spec_version: 1.4.1 -->` as an HTML comment at the top of the generated `AGENTS.md`.
35+
4. Stamp `<!-- spec_version: 1.4.2 -->` as an HTML comment at the top of the generated `AGENTS.md`.
3636
5. Validate result against `references/quality-checklist.md`.
3737
6. Ensure links/paths remain relative and repository-accurate.
3838

skills/create-project-instructions/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Load or attach this file's contents into your AI session to activate the workflo
3535
- `references/command-template.md`
3636
- `references/role-template.md`
3737
4. Apply artifact/summary contract from `references/output-format.md`.
38-
5. Stamp `<!-- spec_version: 1.4.1 -->` as an HTML comment at the top of the generated `AGENTS.md`.
38+
5. Stamp `<!-- spec_version: 1.4.2 -->` as an HTML comment at the top of the generated `AGENTS.md`.
3939
6. Validate completeness using `references/quality-checklist.md` before final output.
4040

4141
## Output Expectations

skills/create-usercontext-instructions/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Load or attach this file's contents into your AI session to activate the workflo
3232
1. Run phased discovery using `references/discovery-phases.md`.
3333
2. Normalize findings into required schema using `references/output-schema.md`.
3434
3. Apply format contract from `references/output-format.md`.
35-
4. Stamp `spec_version: "1.4.1"` in the YAML frontmatter of the generated artifact.
35+
4. Stamp `spec_version: "1.4.2"` in the YAML frontmatter of the generated artifact.
3636
5. Validate against `references/quality-checklist.md` before final output.
3737
6. If structured metadata is requested, apply `references/json-metadata-schema.md`.
3838

0 commit comments

Comments
 (0)