Skip to content

Commit afc6be2

Browse files
committed
Consolidate release version as v2.2
1 parent 8a382a8 commit afc6be2

10 files changed

Lines changed: 26 additions & 360 deletions

File tree

.github/workflows/v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: v2 audit
22

3-
# Local-only by design: this workflow is wired up so the v2.2.0 audit
3+
# Local-only by design: this workflow is wired up so the v2.2 audit
44
# pass is ready to fire the moment we authorize a push, but it never
55
# runs on a push or pull_request event. The two triggers are:
66
#
@@ -9,7 +9,7 @@ name: v2 audit
99
#
1010
# Until the v2 branch is pushed, this file lives on the branch but
1111
# GitHub never schedules it. After we push, the maintainer triggers it
12-
# manually from the Actions tab to gate the v2.2.0 tag.
12+
# manually from the Actions tab to gate the v2.2 tag.
1313
on:
1414
workflow_dispatch:
1515
inputs:

CHANGELOG.md

Lines changed: 14 additions & 348 deletions
Large diffs are not rendered by default.

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors:
1212
repository-code: 'https://github.com/avalonreset/seo-dungeon'
1313
url: 'https://github.com/avalonreset/seo-dungeon'
1414
license: MIT
15-
version: 2.2.16
15+
version: 2.2
1616
date-released: '2026-06-18'
1717
keywords:
1818
- seo

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![CI](https://github.com/avalonreset/seo-dungeon/actions/workflows/ci.yml/badge.svg)](https://github.com/avalonreset/seo-dungeon/actions/workflows/ci.yml)
88
[![License: MIT](https://img.shields.io/badge/license-MIT-green)](LICENSE)
9-
[![Version](https://img.shields.io/badge/version-2.2.16-blue)](CHANGELOG.md)
9+
[![Version](https://img.shields.io/badge/version-2.2-blue)](CHANGELOG.md)
1010
[![Runtime](https://img.shields.io/badge/runtime-Codex%20%7C%20Claude%20%7C%20Gemini-2ea44f)](dungeon/)
1111

1212
SEO Dungeon turns SEO audits into a 16-bit dungeon crawler. Enter a domain,
@@ -58,7 +58,7 @@ access and does not route through browser automation or consumer-app wrappers.
5858
## SEO Engine
5959

6060
The bundled v2.2 engine is synchronized with Daniel Agrici's public
61-
`AgriciDaniel/claude-seo` v2.2.0 release. It includes 25 sub-skills (21 core +
61+
`AgriciDaniel/claude-seo` v2.2 release. It includes 25 sub-skills (21 core +
6262
1 orchestrator + 1 framework integration + 2 extension mirrors), 18 portable
6363
sub-agents, 23 Codex agent profiles, and 50 Python execution scripts.
6464

docs/INSTALLATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ bash install.sh
3838
Remote installs default to the current release tag:
3939

4040
```powershell
41-
$env:SEO_DUNGEON_REF='v2.2.16'
41+
$env:SEO_DUNGEON_REF='v2.2'
4242
.\install.ps1
4343
```
4444

dungeon/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dungeon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "seo-dungeon",
3-
"version": "2.2.16",
3+
"version": "2.2.0",
44
"description": "A 16-bit dungeon crawler interface for local AI SEO audits",
55
"scripts": {
66
"start": "node launch.js",

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function Get-SourceDir {
3737
}
3838

3939
$repo = if ($env:SEO_DUNGEON_REPO) { $env:SEO_DUNGEON_REPO } else { "https://github.com/avalonreset/seo-dungeon" }
40-
$ref = if ($env:SEO_DUNGEON_REF) { $env:SEO_DUNGEON_REF } else { "v2.2.16" }
40+
$ref = if ($env:SEO_DUNGEON_REF) { $env:SEO_DUNGEON_REF } else { "v2.2" }
4141
$tempDir = Join-Path ([System.IO.Path]::GetTempPath()) ([System.Guid]::NewGuid().ToString())
4242
New-Item -ItemType Directory -Force -Path $tempDir | Out-Null
4343
$checkout = Join-Path $tempDir "seo-dungeon"

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ prepare_source() {
2525

2626
command -v git >/dev/null 2>&1 || { echo "[ERROR] Git is required for remote install."; exit 1; }
2727
local repo="${SEO_DUNGEON_REPO:-https://github.com/avalonreset/seo-dungeon}"
28-
local ref="${SEO_DUNGEON_REF:-v2.2.16}"
28+
local ref="${SEO_DUNGEON_REF:-v2.2}"
2929
local temp_dir
3030
temp_dir="$(mktemp -d)"
3131
trap 'rm -rf "${temp_dir}"' EXIT

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "seo-dungeon"
3-
version = "2.2.16"
3+
version = "2.2.0"
44
description = "Gamified SEO Dungeon skill suite with local AI CLI compatibility"
55
requires-python = ">=3.10"
66
license = "MIT"

0 commit comments

Comments
 (0)