chore: sync repo state [ci skip]

This commit is contained in:
github-actions[bot]
2026-04-06 18:32:19 +00:00
parent b5f0edcf81
commit f14fb2bd49
23 changed files with 256 additions and 43 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "antigravity-awesome-skills",
"version": "9.7.0",
"description": "Plugin-safe Claude Code distribution of Antigravity Awesome Skills with 1,360 supported skills.",
"description": "Plugin-safe Claude Code distribution of Antigravity Awesome Skills with 1,361 supported skills.",
"author": {
"name": "sickn33 and contributors",
"url": "https://github.com/sickn33/antigravity-awesome-skills"

View File

@@ -0,0 +1,60 @@
---
name: technical-change-tracker
description: "Track code changes with structured JSON records, state machine enforcement, and AI session handoff for bot continuity"
category: development
risk: safe
source: community
source_repo: Elkidogz/technical-change-skill
source_type: community
date_added: "2026-04-05"
author: Elkidogz
tags: [change-tracking, session-handoff, documentation, accessibility, state-machine]
tools: [claude, cursor, gemini, codex]
---
# Technical Change Tracker
## Overview
Track every code change with structured JSON records and accessible HTML output. Ensures AI bot sessions can resume seamlessly when previous sessions expire or are abandoned.
## When to Use This Skill
- Use when you need structured change tracking across AI coding sessions
- Use when a bot session expires mid-task and the next session needs full context to resume
- Use when onboarding a project with undocumented change history
## How It Works
### State Machine
```
planned -> in_progress -> implemented -> tested -> deployed
|
+-> blocked
```
### Commands
`/tc init` | `/tc create` | `/tc update` | `/tc status` | `/tc resume` | `/tc close` | `/tc export` | `/tc dashboard` | `/tc retro`
### Session Handoff
Each TC stores: progress summary, next steps, blockers, key context, and files in progress — so the next bot session picks up exactly where the last left off.
### Non-Blocking
TC bookkeeping runs via background subagents. Never interrupts coding work.
## Features
- Structured JSON records with append-only revision history
- Test cases with log snippet evidence
- WCAG AA+ accessible HTML output (dark theme, rem-based fonts)
- CSS-only dashboard with status filters
- Python stdlib only — zero external dependencies
- Retroactive bulk creation from git history via `/tc retro`
## Full Repository
https://github.com/Elkidogz/technical-change-skill — MIT License

View File

@@ -19,7 +19,7 @@
"skills": "./skills/",
"interface": {
"displayName": "Antigravity Awesome Skills",
"shortDescription": "1,345 plugin-safe skills for coding, security, product, and ops workflows.",
"shortDescription": "1,346 plugin-safe skills for coding, security, product, and ops workflows.",
"longDescription": "Install a plugin-safe Codex distribution of Antigravity Awesome Skills. Skills that still need hardening or target-specific setup remain available in the repo but are excluded from this plugin.",
"developerName": "sickn33 and contributors",
"category": "Productivity",

View File

@@ -0,0 +1,60 @@
---
name: technical-change-tracker
description: "Track code changes with structured JSON records, state machine enforcement, and AI session handoff for bot continuity"
category: development
risk: safe
source: community
source_repo: Elkidogz/technical-change-skill
source_type: community
date_added: "2026-04-05"
author: Elkidogz
tags: [change-tracking, session-handoff, documentation, accessibility, state-machine]
tools: [claude, cursor, gemini, codex]
---
# Technical Change Tracker
## Overview
Track every code change with structured JSON records and accessible HTML output. Ensures AI bot sessions can resume seamlessly when previous sessions expire or are abandoned.
## When to Use This Skill
- Use when you need structured change tracking across AI coding sessions
- Use when a bot session expires mid-task and the next session needs full context to resume
- Use when onboarding a project with undocumented change history
## How It Works
### State Machine
```
planned -> in_progress -> implemented -> tested -> deployed
|
+-> blocked
```
### Commands
`/tc init` | `/tc create` | `/tc update` | `/tc status` | `/tc resume` | `/tc close` | `/tc export` | `/tc dashboard` | `/tc retro`
### Session Handoff
Each TC stores: progress summary, next steps, blockers, key context, and files in progress — so the next bot session picks up exactly where the last left off.
### Non-Blocking
TC bookkeeping runs via background subagents. Never interrupts coding work.
## Features
- Structured JSON records with append-only revision history
- Test cases with log snippet evidence
- WCAG AA+ accessible HTML output (dark theme, rem-based fonts)
- CSS-only dashboard with status filters
- Python stdlib only — zero external dependencies
- Retroactive bulk creation from git history via `/tc retro`
## Full Repository
https://github.com/Elkidogz/technical-change-skill — MIT License