codex-coach 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-coach",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Local-first Codex usage coach that analyzes logs and suggests workflow improvements.",
5
5
  "author": {
6
6
  "name": "Codex Coach Contributors"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-coach",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Local-first Codex usage coach and plugin",
5
5
  "license": "MIT",
6
6
  "author": "Codex Coach Contributors",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "codex-coach"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "Local-first Codex usage coach and plugin"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -15,7 +15,8 @@ def install_from_source(source_root: Path, paths: CoachPaths, *, schedule: str =
15
15
  paths.ensure_output_dirs()
16
16
  paths.coach_home.mkdir(parents=True, exist_ok=True)
17
17
  _write_default_config(paths, schedule=schedule)
18
- _copy_app(source_root, paths.app_dir)
18
+ if source_root != paths.app_dir.resolve():
19
+ _copy_app(source_root, paths.app_dir)
19
20
  _install_command(paths)
20
21
  plugin_path = _install_plugin(source_root, paths.home)
21
22
  skill_paths = _install_user_skills(source_root, paths.home)