TypeDAL 4.7.0__tar.gz → 4.7.2__tar.gz
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.
- typedal-4.7.2/.crush/.gitignore +1 -0
- typedal-4.7.2/.crush/logs/crush.log +207 -0
- {typedal-4.7.0 → typedal-4.7.2}/CHANGELOG.md +16 -0
- {typedal-4.7.0 → typedal-4.7.2}/PKG-INFO +1 -1
- typedal-4.7.2/docs/2_defining_tables.md +152 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/3_building_queries.md +34 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/__about__.py +1 -1
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/define.py +3 -2
- typedal-4.7.2/src/typedal/enum_helpers.py +43 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/query_builder.py +19 -6
- typedal-4.7.2/tests/__init__.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_main.py +41 -10
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_query_builder.py +37 -0
- typedal-4.7.0/docs/2_defining_tables.md +0 -107
- /typedal-4.7.0/src/typedal/py.typed → /typedal-4.7.2/.crush/init +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/.github/workflows/su6.yml +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/.gitignore +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/.readthedocs.yml +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/README.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/coverage.svg +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/10_advanced_apis.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/1_getting_started.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/4_relationships.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/5_py4web.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/6_migrations.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/7_configuration.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/8_mixins.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/9_memoization.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/css/code_blocks.css +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/index.md +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/docs/requirements.txt +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/example_new.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/example_old.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/mkdocs.yml +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/pyproject.toml +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/__init__.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/caching.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/cli.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/config.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/constants.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/core.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/fields.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/for_py4web.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/for_web2py.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/helpers.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/mixins.py +0 -0
- /typedal-4.7.0/tests/__init__.py → /typedal-4.7.2/src/typedal/py.typed +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/relationships.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/rows.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/serializers/as_json.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/tables.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/types.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/src/typedal/web2py_py4web_shared.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tasks.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/configs/simple.toml +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/configs/valid.env +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/configs/valid.toml +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/py314_tests.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_cli.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_config.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_docs_examples.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_helpers.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_json.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_mixins.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_mypy.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_orm.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_py4web.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_relationships.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_row.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_stats.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_table.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_web2py.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/test_xx_others.py +0 -0
- {typedal-4.7.0 → typedal-4.7.2}/tests/timings.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
{"time":"2026-04-20T18:13:48.201711591+02:00","level":"INFO","source":{"function":"github.com/charmbracelet/crush/internal/agent/tools/mcp.Initialize","file":"github.com/charmbracelet/crush/internal/agent/tools/mcp/init.go","line":167},"msg":"Initializing MCP clients"}
|
|
2
|
+
{"time":"2026-04-20T18:13:48.201733017+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
3
|
+
{"time":"2026-04-20T18:13:48.201872042+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
4
|
+
{"time":"2026-04-20T18:13:48.201882212+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
5
|
+
{"time":"2026-04-20T18:13:48.201891129+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
6
|
+
{"time":"2026-04-20T18:13:48.201900003+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
7
|
+
{"time":"2026-04-20T18:13:48.201905449+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
8
|
+
{"time":"2026-04-20T18:13:48.202233341+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
9
|
+
{"time":"2026-04-20T18:13:48.202253645+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
10
|
+
{"time":"2026-04-20T18:13:48.202265714+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
11
|
+
{"time":"2026-04-20T18:13:48.202274222+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
12
|
+
{"time":"2026-04-20T18:13:48.202287577+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
13
|
+
{"time":"2026-04-20T18:13:48.202294554+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
14
|
+
{"time":"2026-04-20T18:13:48.202311629+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
15
|
+
{"time":"2026-04-20T18:13:48.202332068+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
16
|
+
{"time":"2026-04-20T18:13:48.202340344+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
17
|
+
{"time":"2026-04-20T18:13:48.202348255+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
18
|
+
{"time":"2026-04-20T18:13:48.202354763+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
19
|
+
{"time":"2026-04-20T18:13:48.202360934+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
20
|
+
{"time":"2026-04-20T18:14:06.64984534+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
21
|
+
{"time":"2026-04-20T18:14:06.649881676+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
22
|
+
{"time":"2026-04-20T18:14:06.649893357+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
23
|
+
{"time":"2026-04-20T18:14:06.649909618+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
24
|
+
{"time":"2026-04-20T18:14:06.649918405+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
25
|
+
{"time":"2026-04-20T18:14:06.64992647+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
26
|
+
{"time":"2026-04-20T18:17:38.021236325+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
27
|
+
{"time":"2026-04-20T18:17:38.021301721+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
28
|
+
{"time":"2026-04-20T18:17:38.021317418+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
29
|
+
{"time":"2026-04-20T18:17:38.021328134+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
30
|
+
{"time":"2026-04-20T18:17:38.021352873+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
31
|
+
{"time":"2026-04-20T18:17:38.021362039+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
32
|
+
{"time":"2026-04-20T18:17:47.000105143+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:17:47.000033483 INFO Version: 0.0.20\n"}
|
|
33
|
+
{"time":"2026-04-20T18:17:47.001002163+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:17:47.000946864 ERROR Invalid client response: did not contain a result or error (method=workspace/configuration)\n"}
|
|
34
|
+
{"time":"2026-04-20T18:19:44.026044625+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
35
|
+
{"time":"2026-04-20T18:19:44.02610561+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
36
|
+
{"time":"2026-04-20T18:19:44.02611418+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
37
|
+
{"time":"2026-04-20T18:19:44.026119818+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
38
|
+
{"time":"2026-04-20T18:19:44.026124946+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
39
|
+
{"time":"2026-04-20T18:19:44.026145937+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
40
|
+
{"time":"2026-04-20T18:21:32.705298648+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
41
|
+
{"time":"2026-04-20T18:21:32.705334321+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
42
|
+
{"time":"2026-04-20T18:21:32.705343032+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
43
|
+
{"time":"2026-04-20T18:21:32.70534904+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
44
|
+
{"time":"2026-04-20T18:21:32.705362742+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
45
|
+
{"time":"2026-04-20T18:21:32.705367999+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
46
|
+
{"time":"2026-04-20T18:22:45.374549578+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
47
|
+
{"time":"2026-04-20T18:22:45.374669153+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
48
|
+
{"time":"2026-04-20T18:22:45.374732961+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
49
|
+
{"time":"2026-04-20T18:22:45.374784191+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
50
|
+
{"time":"2026-04-20T18:22:45.374816548+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
51
|
+
{"time":"2026-04-20T18:22:45.374845082+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
52
|
+
{"time":"2026-04-20T18:23:54.101699103+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
53
|
+
{"time":"2026-04-20T18:23:54.101729642+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
54
|
+
{"time":"2026-04-20T18:23:54.101738082+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
55
|
+
{"time":"2026-04-20T18:23:54.101753028+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
56
|
+
{"time":"2026-04-20T18:23:54.101758529+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
57
|
+
{"time":"2026-04-20T18:23:54.101763163+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
58
|
+
{"time":"2026-04-20T18:24:56.312489192+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
59
|
+
{"time":"2026-04-20T18:24:56.312572964+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
60
|
+
{"time":"2026-04-20T18:24:56.312587424+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
61
|
+
{"time":"2026-04-20T18:24:56.31259844+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
62
|
+
{"time":"2026-04-20T18:24:56.312609313+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
63
|
+
{"time":"2026-04-20T18:24:56.312619619+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
64
|
+
{"time":"2026-04-20T18:25:21.919245989+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
65
|
+
{"time":"2026-04-20T18:25:21.919297826+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
66
|
+
{"time":"2026-04-20T18:25:21.91930743+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
67
|
+
{"time":"2026-04-20T18:25:21.919312872+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
68
|
+
{"time":"2026-04-20T18:25:21.919317211+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
69
|
+
{"time":"2026-04-20T18:25:21.919321175+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
70
|
+
{"time":"2026-04-20T18:27:36.584730165+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
71
|
+
{"time":"2026-04-20T18:27:36.584765055+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
72
|
+
{"time":"2026-04-20T18:27:36.584777778+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
73
|
+
{"time":"2026-04-20T18:27:36.584785108+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
74
|
+
{"time":"2026-04-20T18:27:36.584790846+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
75
|
+
{"time":"2026-04-20T18:27:36.584796047+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
76
|
+
{"time":"2026-04-20T18:30:36.270448176+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
77
|
+
{"time":"2026-04-20T18:30:36.270506107+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
78
|
+
{"time":"2026-04-20T18:30:36.27045248+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
79
|
+
{"time":"2026-04-20T18:30:37.489146414+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
80
|
+
{"time":"2026-04-20T18:30:37.489215044+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
81
|
+
{"time":"2026-04-20T18:30:37.489223114+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
82
|
+
{"time":"2026-04-20T18:30:37.489228634+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
83
|
+
{"time":"2026-04-20T18:30:37.489234199+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
84
|
+
{"time":"2026-04-20T18:30:37.489239371+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
85
|
+
{"time":"2026-04-20T18:30:37.489174893+02:00","level":"INFO","source":{"function":"github.com/charmbracelet/crush/internal/agent/tools/mcp.Initialize","file":"github.com/charmbracelet/crush/internal/agent/tools/mcp/init.go","line":167},"msg":"Initializing MCP clients"}
|
|
86
|
+
{"time":"2026-04-20T18:30:37.489545395+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
87
|
+
{"time":"2026-04-20T18:30:37.48956473+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
88
|
+
{"time":"2026-04-20T18:30:37.489574053+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
89
|
+
{"time":"2026-04-20T18:30:37.489582023+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
90
|
+
{"time":"2026-04-20T18:30:37.489588489+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
91
|
+
{"time":"2026-04-20T18:30:37.489595713+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
92
|
+
{"time":"2026-04-20T18:30:37.489790905+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
93
|
+
{"time":"2026-04-20T18:30:37.489809644+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
94
|
+
{"time":"2026-04-20T18:30:37.489819298+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
95
|
+
{"time":"2026-04-20T18:30:37.489824961+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
96
|
+
{"time":"2026-04-20T18:30:37.490080811+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
97
|
+
{"time":"2026-04-20T18:30:37.490091313+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
98
|
+
{"time":"2026-04-20T18:30:39.75512795+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/config.(*Config).configureProviders","file":"github.com/charmbracelet/crush/internal/config/load.go","line":317},"msg":"Skipping provider due to missing API key","provider":"anthropic"}
|
|
99
|
+
{"time":"2026-04-20T18:30:39.762914677+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/config.(*Config).configureProviders","file":"github.com/charmbracelet/crush/internal/config/load.go","line":317},"msg":"Skipping provider due to missing API key","provider":"anthropic"}
|
|
100
|
+
{"time":"2026-04-20T18:30:39.764566273+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
101
|
+
{"time":"2026-04-20T18:30:39.764682033+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
102
|
+
{"time":"2026-04-20T18:30:39.764723749+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
103
|
+
{"time":"2026-04-20T18:30:39.764749493+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
104
|
+
{"time":"2026-04-20T18:30:39.764772638+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
105
|
+
{"time":"2026-04-20T18:30:39.76479558+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
106
|
+
{"time":"2026-04-20T18:31:01.099789038+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
107
|
+
{"time":"2026-04-20T18:31:01.099829987+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
108
|
+
{"time":"2026-04-20T18:31:01.099842419+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
109
|
+
{"time":"2026-04-20T18:31:01.099859755+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
110
|
+
{"time":"2026-04-20T18:31:01.099868856+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
111
|
+
{"time":"2026-04-20T18:31:01.099876712+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
112
|
+
{"time":"2026-04-20T18:33:13.241377939+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
113
|
+
{"time":"2026-04-20T18:33:13.241422925+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
114
|
+
{"time":"2026-04-20T18:33:13.241445445+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
115
|
+
{"time":"2026-04-20T18:33:13.241468359+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
116
|
+
{"time":"2026-04-20T18:33:13.241473928+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
117
|
+
{"time":"2026-04-20T18:33:13.241478852+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
118
|
+
{"time":"2026-04-20T18:33:22.693343089+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:33:22.693239147 INFO Version: 0.0.20\n"}
|
|
119
|
+
{"time":"2026-04-20T18:33:22.69501092+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:33:22.694903181 ERROR Invalid client response: did not contain a result or error (method=workspace/configuration)\n"}
|
|
120
|
+
{"time":"2026-04-20T18:36:27.442069003+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
121
|
+
{"time":"2026-04-20T18:36:27.442204157+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
122
|
+
{"time":"2026-04-20T18:36:27.442276964+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
123
|
+
{"time":"2026-04-20T18:36:27.442333+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
124
|
+
{"time":"2026-04-20T18:36:27.442365155+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
125
|
+
{"time":"2026-04-20T18:36:27.442396939+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
126
|
+
{"time":"2026-04-20T18:36:33.349376972+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
127
|
+
{"time":"2026-04-20T18:36:33.349446984+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
128
|
+
{"time":"2026-04-20T18:36:33.34944793+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
129
|
+
{"time":"2026-04-20T18:36:34.06246598+02:00","level":"INFO","source":{"function":"github.com/charmbracelet/crush/internal/agent/tools/mcp.Initialize","file":"github.com/charmbracelet/crush/internal/agent/tools/mcp/init.go","line":167},"msg":"Initializing MCP clients"}
|
|
130
|
+
{"time":"2026-04-20T18:36:34.063276447+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
131
|
+
{"time":"2026-04-20T18:36:34.064132045+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
132
|
+
{"time":"2026-04-20T18:36:34.064222216+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
133
|
+
{"time":"2026-04-20T18:36:34.064278894+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
134
|
+
{"time":"2026-04-20T18:36:34.064360309+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
135
|
+
{"time":"2026-04-20T18:36:34.064439118+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
136
|
+
{"time":"2026-04-20T18:36:34.068650462+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
137
|
+
{"time":"2026-04-20T18:36:34.068673263+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
138
|
+
{"time":"2026-04-20T18:36:34.068698433+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
139
|
+
{"time":"2026-04-20T18:36:34.068706801+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
140
|
+
{"time":"2026-04-20T18:36:34.068714545+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
141
|
+
{"time":"2026-04-20T18:36:34.068726472+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
142
|
+
{"time":"2026-04-20T18:36:34.068835167+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
143
|
+
{"time":"2026-04-20T18:36:34.068853486+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
144
|
+
{"time":"2026-04-20T18:36:34.068863793+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
145
|
+
{"time":"2026-04-20T18:36:34.068871894+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
146
|
+
{"time":"2026-04-20T18:36:34.068879105+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
147
|
+
{"time":"2026-04-20T18:36:34.068886078+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
148
|
+
{"time":"2026-04-20T18:36:36.301602428+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:36:36.301543775 INFO Version: 0.0.20\n"}
|
|
149
|
+
{"time":"2026-04-20T18:36:36.302451369+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:36:36.302401547 ERROR Invalid client response: did not contain a result or error (method=workspace/configuration)\n"}
|
|
150
|
+
{"time":"2026-04-20T18:36:41.075545801+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
151
|
+
{"time":"2026-04-20T18:36:41.075660516+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
152
|
+
{"time":"2026-04-20T18:36:41.075674205+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
153
|
+
{"time":"2026-04-20T18:36:41.827397583+02:00","level":"INFO","source":{"function":"github.com/charmbracelet/crush/internal/agent/tools/mcp.Initialize","file":"github.com/charmbracelet/crush/internal/agent/tools/mcp/init.go","line":167},"msg":"Initializing MCP clients"}
|
|
154
|
+
{"time":"2026-04-20T18:36:41.827489822+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
155
|
+
{"time":"2026-04-20T18:36:41.827795955+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
156
|
+
{"time":"2026-04-20T18:36:41.827835896+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
157
|
+
{"time":"2026-04-20T18:36:41.827864352+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
158
|
+
{"time":"2026-04-20T18:36:41.827888354+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
159
|
+
{"time":"2026-04-20T18:36:41.827929145+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
160
|
+
{"time":"2026-04-20T18:36:41.830127197+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
161
|
+
{"time":"2026-04-20T18:36:41.830356376+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
162
|
+
{"time":"2026-04-20T18:36:41.830475733+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
163
|
+
{"time":"2026-04-20T18:36:41.830562078+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
164
|
+
{"time":"2026-04-20T18:36:41.830620674+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
165
|
+
{"time":"2026-04-20T18:36:41.830710508+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
166
|
+
{"time":"2026-04-20T18:36:41.830754227+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
167
|
+
{"time":"2026-04-20T18:36:41.830928255+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
168
|
+
{"time":"2026-04-20T18:36:41.830987973+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
169
|
+
{"time":"2026-04-20T18:36:41.831069173+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
170
|
+
{"time":"2026-04-20T18:36:41.831135599+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
171
|
+
{"time":"2026-04-20T18:36:41.83122429+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
172
|
+
{"time":"2026-04-20T18:36:43.757131301+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:36:43.757078707 INFO Version: 0.0.20\n"}
|
|
173
|
+
{"time":"2026-04-20T18:36:43.758109924+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":650},"msg":"Language server stderr","command":"ty","output":"2026-04-20 18:36:43.758011597 ERROR Invalid client response: did not contain a result or error (method=workspace/configuration)\n"}
|
|
174
|
+
{"time":"2026-04-20T18:36:53.306260534+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
175
|
+
{"time":"2026-04-20T18:36:53.306306116+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
176
|
+
{"time":"2026-04-20T18:36:53.306317329+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
177
|
+
{"time":"2026-04-20T18:36:53.306325643+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
178
|
+
{"time":"2026-04-20T18:36:53.306333131+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
179
|
+
{"time":"2026-04-20T18:36:53.30634057+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
180
|
+
{"time":"2026-04-20T18:43:44.205335032+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
181
|
+
{"time":"2026-04-20T18:43:44.205387067+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
182
|
+
{"time":"2026-04-20T18:43:44.205396502+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
183
|
+
{"time":"2026-04-20T18:43:44.205403393+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
184
|
+
{"time":"2026-04-20T18:43:44.205378829+02:00","level":"INFO","source":{"function":"github.com/charmbracelet/crush/internal/agent/tools/mcp.Initialize","file":"github.com/charmbracelet/crush/internal/agent/tools/mcp/init.go","line":167},"msg":"Initializing MCP clients"}
|
|
185
|
+
{"time":"2026-04-20T18:43:44.205409145+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
186
|
+
{"time":"2026-04-20T18:43:44.205439116+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
187
|
+
{"time":"2026-04-20T18:43:44.205713231+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
188
|
+
{"time":"2026-04-20T18:43:44.205741284+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
189
|
+
{"time":"2026-04-20T18:43:44.205747315+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
190
|
+
{"time":"2026-04-20T18:43:44.205752785+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
191
|
+
{"time":"2026-04-20T18:43:44.205757012+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
192
|
+
{"time":"2026-04-20T18:43:44.205761162+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
193
|
+
{"time":"2026-04-20T18:43:44.205872559+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
194
|
+
{"time":"2026-04-20T18:43:44.205884852+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
195
|
+
{"time":"2026-04-20T18:43:44.205895755+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
196
|
+
{"time":"2026-04-20T18:43:44.205902016+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
197
|
+
{"time":"2026-04-20T18:43:44.205906452+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
198
|
+
{"time":"2026-04-20T18:43:44.205926735+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
199
|
+
{"time":"2026-04-20T18:44:08.973165799+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/crush/skills","error":"stat /home/robin/.config/crush/skills: no such file or directory"}
|
|
200
|
+
{"time":"2026-04-20T18:44:08.973396397+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/.config/agents/skills","error":"stat /home/robin/.config/agents/skills: no such file or directory"}
|
|
201
|
+
{"time":"2026-04-20T18:44:08.973466046+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.agents/skills","error":"stat /home/robin/werk/Eigen/typedal/.agents/skills: no such file or directory"}
|
|
202
|
+
{"time":"2026-04-20T18:44:08.973519633+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.crush/skills","error":"stat /home/robin/werk/Eigen/typedal/.crush/skills: no such file or directory"}
|
|
203
|
+
{"time":"2026-04-20T18:44:08.973608858+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.claude/skills","error":"stat /home/robin/werk/Eigen/typedal/.claude/skills: no such file or directory"}
|
|
204
|
+
{"time":"2026-04-20T18:44:08.973659368+02:00","level":"WARN","source":{"function":"github.com/charmbracelet/crush/internal/skills.Discover","file":"github.com/charmbracelet/crush/internal/skills/skills.go","line":234},"msg":"Failed to walk skills path","path":"/home/robin/werk/Eigen/typedal/.cursor/skills","error":"stat /home/robin/werk/Eigen/typedal/.cursor/skills: no such file or directory"}
|
|
205
|
+
{"time":"2026-04-20T18:57:26.271989451+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
206
|
+
{"time":"2026-04-20T18:57:26.27203361+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
207
|
+
{"time":"2026-04-20T18:57:26.272033927+02:00","level":"ERROR","source":{"function":"github.com/charmbracelet/x/powernap/pkg/lsp.startServerProcess.func1","file":"github.com/charmbracelet/x/powernap@v0.1.4/pkg/lsp/client.go","line":645},"msg":"Error reading stderr","error":"read |0: file already closed"}
|
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
<!--next-version-placeholder-->
|
|
4
4
|
|
|
5
|
+
## v4.7.2 (2026-04-20)
|
|
6
|
+
|
|
7
|
+
### Fix
|
|
8
|
+
|
|
9
|
+
* **enums:** Add safe enum parsing helper and docs for mixed-type rejection + invalid DB sentinel ([`33ee169`](https://github.com/trialandsuccess/TypeDAL/commit/33ee169b61522cf7a863e29c68822a3b0e07d376))
|
|
10
|
+
|
|
11
|
+
## v4.7.1 (2026-04-20)
|
|
12
|
+
|
|
13
|
+
### Fix
|
|
14
|
+
|
|
15
|
+
* Collect_into() can now load into partially overlapping classes (instead of only subclasses) ([`a19e3e6`](https://github.com/trialandsuccess/TypeDAL/commit/a19e3e6b072bbf0ffe0cf68ecbee349f65fbe467))
|
|
16
|
+
|
|
17
|
+
### Documentation
|
|
18
|
+
|
|
19
|
+
* Updated documentation for new features since 4.6 ([`97e90a8`](https://github.com/trialandsuccess/TypeDAL/commit/97e90a847dff47651dfc0c21fa9e7442558914d2))
|
|
20
|
+
|
|
5
21
|
## v4.7.0 (2026-04-20)
|
|
6
22
|
|
|
7
23
|
### Feature
|