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/agents/code-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You are a C# code reviewer specializing in Unity packages and Roslyn source gene

## Project Context

This is **Aspid.FastTools** — a Unity package (`com.aspid.fasttools`) with two separate projects:
This is **Aspid.FastTools** — a Unity package (`tech.aspid.fasttools`) with two separate projects:
- `Aspid.FastTools/` — Unity project (Runtime + Editor assemblies)
- `Aspid.FastTools.Generators/` — .NET solution with Roslyn source generators

Expand Down
2 changes: 1 addition & 1 deletion Aspid.FastTools.Generators/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Aspid.FastTools.Generators

Standalone .NET solution containing Roslyn source generators for the `com.aspid.fasttools` Unity package.
Standalone .NET solution containing Roslyn source generators for the `tech.aspid.fasttools` Unity package.

## Commands

Expand Down
3 changes: 3 additions & 0 deletions Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Renamed UPM package from `com.aspid.fasttools` to `tech.aspid.fasttools` to align with the `tech.*` reverse-domain convention.

## [1.0.0-rc.3] — 2026-05-25

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal sealed class WelcomeWindow : EditorWindow

private const string MenuPath = "Tools/Aspid 🐍/Welcome FastTools";

private const string PackageName = "com.aspid.fasttools";
private const string PackageName = "tech.aspid.fasttools";
private const string PackageRootPath = "Assets/Aspid/FastTools";

private const string SamplesPath = PackageRootPath + "/Samples";
Expand Down
2 changes: 1 addition & 1 deletion Aspid.FastTools/Assets/Aspid/FastTools/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "com.aspid.fasttools",
"name": "tech.aspid.fasttools",
"version": "1.0.0-rc.3",
"displayName": "Aspid.FastTools",
"description": "Unity tools to cut boilerplate — source-generated ProfilerMarkers, serializable type/enum/ID systems, and a fluent UIToolkit API.",
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

## Repository Overview

**Aspid.FastTools** is a Unity package (`com.aspid.fasttools`) targeting Unity 6.0+ that minimizes routine boilerplate code. It consists of two separate projects:
**Aspid.FastTools** is a Unity package (`tech.aspid.fasttools`) targeting Unity 6.0+ that minimizes routine boilerplate code. It consists of two separate projects:

1. **`Aspid.FastTools/`** — The Unity project containing the package source (Runtime + Editor code)
2. **`Aspid.FastTools.Generators/`** — A standalone .NET solution containing Roslyn source generators
Expand Down
Loading