chore: WIP marketplace doc adjustments across plugins
Pre-trekexecute snapshot of in-progress CLAUDE.md/SKILL.md edits and extracted docs/ files. Captured as one commit so /trekexecute claude-design can run against a clean working tree. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
f49aea245c
commit
dacc1e9f30
1 changed files with 2 additions and 19 deletions
21
CLAUDE.md
21
CLAUDE.md
|
|
@ -31,11 +31,11 @@ Legacy bash scripts were removed in v1.0 (available in git history).
|
||||||
## Data storage
|
## Data storage
|
||||||
|
|
||||||
```
|
```
|
||||||
${CLAUDE_PLUGIN_DATA}/
|
$CLAUDE_PLUGIN_DATA/
|
||||||
├── sessions.jsonl Compact JSONL, one record per session
|
├── sessions.jsonl Compact JSONL, one record per session
|
||||||
├── events.jsonl {ts, session_id, tool_name} per tool call
|
├── events.jsonl {ts, session_id, tool_name} per tool call
|
||||||
└── state/
|
└── state/
|
||||||
└── {session_id}.json Live state during active session
|
└── <session_id>.json Live state during active session
|
||||||
```
|
```
|
||||||
|
|
||||||
State files are created at SessionStart and deleted at SessionEnd.
|
State files are created at SessionStart and deleted at SessionEnd.
|
||||||
|
|
@ -92,20 +92,3 @@ node --test tests/*.test.mjs
|
||||||
- Conventional Commits: `type(scope): description`
|
- Conventional Commits: `type(scope): description`
|
||||||
- English for all code, comments, and documentation
|
- English for all code, comments, and documentation
|
||||||
- Norwegian for project-internal communication
|
- Norwegian for project-internal communication
|
||||||
|
|
||||||
## Communication patterns
|
|
||||||
|
|
||||||
### Linking to local files
|
|
||||||
|
|
||||||
When pointing to local files in responses, always use markdown link syntax with a descriptive name:
|
|
||||||
|
|
||||||
- Use `[Human-friendly name](file:///absolute/path)` — never bare `file:///...` URLs or autolinks `<file://...>`.
|
|
||||||
- Always use absolute paths. Never `~/` or relative paths.
|
|
||||||
- For multiple files, render as a bullet list of named markdown links.
|
|
||||||
|
|
||||||
Why: bare `file://` URLs only render the first as clickable across multiple lines. Named markdown links make each entry independently clickable and look cleaner.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
- [Brief](file:///Users/ktg/.../brief.html)
|
|
||||||
- [Research summary](file:///Users/ktg/.../research/summary.md)
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue