Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "skill-issue",
"description": "Gamified active learning for agentic coding sessions — bite-sized challenges, XP, streaks, and topic mastery embedded directly into your workflow",
"version": "1.0.0",
"version": "1.1.0",
"author": {
"name": "Snehal Raj",
"github": "SnehalRaj"
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "skill-issue-cc"
version = "1.2.0"
version = "1.3.0"
description = "Gamified active learning system for agentic coding sessions"
readme = "README.md"
license = { text = "MIT" }
Expand All @@ -27,12 +27,12 @@ skill-issue = "skill_issue.cli:main"
where = ["."]
include = ["skill_issue*"]

[project.optional-dependencies]
dev = ["pytest>=7.0"]

[tool.setuptools.package-data]
skill_issue = ["SKILL.md"]

[project.optional-dependencies]
dev = ["pytest>=7.0"]

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
106 changes: 0 additions & 106 deletions skill_issue/SKILL.md

This file was deleted.

1 change: 1 addition & 0 deletions skill_issue/SKILL.md
9 changes: 6 additions & 3 deletions skill_issue/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@


def _get_skill_md_path() -> Path:
"""Find SKILL.md - try package-relative first (pip install), then repo root (dev)."""
"""Find SKILL.md - try package-relative first (pip install), then skills/ dir (dev)."""
# 1. Package-relative: works for pip install (symlink resolved at build time)
skill_md_path = Path(__file__).parent / "SKILL.md"
if not skill_md_path.exists():
skill_md_path = Path(__file__).parent.parent / "SKILL.md"
if skill_md_path.exists():
return skill_md_path
# 2. Canonical skills/ directory: works for dev mode (repo checkout)
skill_md_path = Path(__file__).parent.parent / "skills" / "skill-issue" / "SKILL.md"
return skill_md_path


Expand Down
File renamed without changes.