Skip to content

feat(claude): Phase 1 - Foundation for Claude Code support#76

Merged
usrrname merged 5 commits intomainfrom
feat/claude-support-phase1-core
Apr 5, 2026
Merged

feat(claude): Phase 1 - Foundation for Claude Code support#76
usrrname merged 5 commits intomainfrom
feat/claude-support-phase1-core

Conversation

@usrrname
Copy link
Copy Markdown
Owner

@usrrname usrrname commented Apr 5, 2026

feat(claude): Phase 1 - Foundation with skills and commandsAdd Claude Code support infrastructure:

  • Update renovate.json with weekly updates and GitHub Actions pinning
  • Create .claude/settings.json with 4 personas (BasicBitch, Spellchuck, Godmode, SageDaddy)
  • Add 2 core rules (agent-communication, security-scan)
  • Create .claude/skills/ with 6 SKILL.md files:
    • typescript, react, nextjs, vue3, cloudflare-workers, cloudflare-hono
  • Add .claude/skills/CLAUDE.md for agent guidance
  • Create 3 slash commands: /typescript, /react, /nextjs
  • Add .claudeignore template
  • Create AGENTS.md discoverability layer
  • Build rule transformer utility
  • Add security-block hook

Refs: Phase 1 implementation
feat(claude): Add remaining skills (mysql, laravel) and vue3 command- Add mysql/SKILL.md for database best practices

  • Add laravel/SKILL.md for Laravel PHP patterns
  • Add vue3.md slash command for Vue 3 framework guidance
  • Skills provide intent-based workflows triggered by file patterns or commands

Refs: Phase 1 skills implementation
refactor(skills): Update frontmatter - remove commands, add model:inh……erit

  • Remove command triggers from all skills (avoid duplication with slash commands)
  • Add model: inherit to all skill frontmatter for model inheritance
  • Skills now only trigger by file patterns

Refs: Phase 1 skills refinement
feat(skills): Add Biome linter/formatter skillAdd biome/SKILL.md for Biome JavaScript/TypeScript toolchain:

  • Configuration guidance for biome.json
  • Migration tips from ESLint/Prettier
  • Performance best practices
  • Example configurations and commands

Refs: Phase 1 skills
docs(skills): Add convention adoption rule to Biome skill- Add section on adopting pre-existing Biome config if found

  • Do not modify existing rules without explicit request
  • Follow established formatting style and respect overrides

Refs: Phase 1 skills refinement

Add Claude Code support infrastructure:

- Update renovate.json with weekly updates and GitHub Actions pinning
- Create .claude/settings.json with 4 personas (BasicBitch, Spellchuck, Godmode, SageDaddy)
- Add 2 core rules (agent-communication, security-scan)
- Create .claude/skills/ with 6 SKILL.md files:
  - typescript, react, nextjs, vue3, cloudflare-workers, cloudflare-hono
- Add .claude/skills/CLAUDE.md for agent guidance
- Create 3 slash commands: /typescript, /react, /nextjs
- Add .claudeignore template
- Create AGENTS.md discoverability layer
- Build rule transformer utility
- Add security-block hook

Refs: Phase 1 implementation
@usrrname usrrname force-pushed the feat/claude-support-phase1-core branch from 7a535df to 80e8237 Compare April 5, 2026 14:54
usrrname added 4 commits April 5, 2026 10:56
- Add mysql/SKILL.md for database best practices
- Add laravel/SKILL.md for Laravel PHP patterns
- Add vue3.md slash command for Vue 3 framework guidance
- Skills provide intent-based workflows triggered by file patterns or commands

Refs: Phase 1 skills implementation
…erit

- Remove command triggers from all skills (avoid duplication with slash commands)
- Add model: inherit to all skill frontmatter for model inheritance
- Skills now only trigger by file patterns

Refs: Phase 1 skills refinement
Add biome/SKILL.md for Biome JavaScript/TypeScript toolchain:
- Configuration guidance for biome.json
- Migration tips from ESLint/Prettier
- Performance best practices
- Example configurations and commands

Refs: Phase 1 skills
- Add section on adopting pre-existing Biome config if found
- Do not modify existing rules without explicit request
- Follow established formatting style and respect overrides

Refs: Phase 1 skills refinement
@usrrname usrrname merged commit 835d003 into main Apr 5, 2026
9 checks passed
@usrrname usrrname deleted the feat/claude-support-phase1-core branch April 5, 2026 15:06
usrrname added a commit that referenced this pull request Apr 5, 2026
* feat(claude): Phase 1 - Foundation with skills and commands

Add Claude Code support infrastructure:

- Update renovate.json with weekly updates and GitHub Actions pinning
- Create .claude/settings.json with 4 personas (BasicBitch, Spellchuck, Godmode, SageDaddy)
- Add 2 core rules (agent-communication, security-scan)
- Create .claude/skills/ with 6 SKILL.md files:
  - typescript, react, nextjs, vue3, cloudflare-workers, cloudflare-hono
- Add .claude/skills/CLAUDE.md for agent guidance
- Create 3 slash commands: /typescript, /react, /nextjs
- Add .claudeignore template
- Create AGENTS.md discoverability layer
- Build rule transformer utility
- Add security-block hook

Refs: Phase 1 implementation

* feat(claude): Add remaining skills (mysql, laravel) and vue3 command

- Add mysql/SKILL.md for database best practices
- Add laravel/SKILL.md for Laravel PHP patterns
- Add vue3.md slash command for Vue 3 framework guidance
- Skills provide intent-based workflows triggered by file patterns or commands

Refs: Phase 1 skills implementation

* refactor(skills): Update frontmatter - remove commands, add model:inherit

- Remove command triggers from all skills (avoid duplication with slash commands)
- Add model: inherit to all skill frontmatter for model inheritance
- Skills now only trigger by file patterns

Refs: Phase 1 skills refinement

* feat(skills): Add Biome linter/formatter skill

Add biome/SKILL.md for Biome JavaScript/TypeScript toolchain:
- Configuration guidance for biome.json
- Migration tips from ESLint/Prettier
- Performance best practices
- Example configurations and commands

Refs: Phase 1 skills

* docs(skills): Add convention adoption rule to Biome skill

- Add section on adopting pre-existing Biome config if found
- Do not modify existing rules without explicit request
- Follow established formatting style and respect overrides

Refs: Phase 1 skills refinement
usrrname added a commit that referenced this pull request Apr 6, 2026
* feat(claude): Phase 1 - Foundation with skills and commands

Add Claude Code support infrastructure:

- Update renovate.json with weekly updates and GitHub Actions pinning
- Create .claude/settings.json with 4 personas (BasicBitch, Spellchuck, Godmode, SageDaddy)
- Add 2 core rules (agent-communication, security-scan)
- Create .claude/skills/ with 6 SKILL.md files:
  - typescript, react, nextjs, vue3, cloudflare-workers, cloudflare-hono
- Add .claude/skills/CLAUDE.md for agent guidance
- Create 3 slash commands: /typescript, /react, /nextjs
- Add .claudeignore template
- Create AGENTS.md discoverability layer
- Build rule transformer utility
- Add security-block hook

Refs: Phase 1 implementation

* feat(claude): Add remaining skills (mysql, laravel) and vue3 command

- Add mysql/SKILL.md for database best practices
- Add laravel/SKILL.md for Laravel PHP patterns
- Add vue3.md slash command for Vue 3 framework guidance
- Skills provide intent-based workflows triggered by file patterns or commands

Refs: Phase 1 skills implementation

* refactor(skills): Update frontmatter - remove commands, add model:inherit

- Remove command triggers from all skills (avoid duplication with slash commands)
- Add model: inherit to all skill frontmatter for model inheritance
- Skills now only trigger by file patterns

Refs: Phase 1 skills refinement

* feat(skills): Add Biome linter/formatter skill

Add biome/SKILL.md for Biome JavaScript/TypeScript toolchain:
- Configuration guidance for biome.json
- Migration tips from ESLint/Prettier
- Performance best practices
- Example configurations and commands

Refs: Phase 1 skills

* docs(skills): Add convention adoption rule to Biome skill

- Add section on adopting pre-existing Biome config if found
- Do not modify existing rules without explicit request
- Follow established formatting style and respect overrides

Refs: Phase 1 skills refinement
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant