flonat-research 0.1.0 → 0.1.1
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.
- package/README.md +17 -2
- package/docs/getting-started.md +26 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,9 +6,22 @@ Made by a humble PhD student. A complete Claude Code infrastructure for research
|
|
|
6
6
|
|
|
7
7
|
Works on **macOS, Linux, and Windows**. Use Claude Code from the [terminal CLI](https://docs.anthropic.com/en/docs/claude-code), [VS Code](https://marketplace.visualstudio.com/items?itemName=anthropics.claude-code), [JetBrains IDEs](https://plugins.jetbrains.com/plugin/27189-claude-code), [the web](https://claude.ai/code), or the [desktop app](https://claude.ai/download) — all share the same skills, agents, and rules.
|
|
8
8
|
|
|
9
|
+
[](https://www.npmjs.com/package/flonat-research)
|
|
10
|
+
[](https://github.com/flonat/claude-research/releases)
|
|
11
|
+
|
|
9
12
|
## Installation
|
|
10
13
|
|
|
11
|
-
###
|
|
14
|
+
### Quick Install (npm)
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx flonat-research
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
This downloads the package and runs the setup script, which symlinks skills, agents, hooks, and rules into `~/.claude/`.
|
|
21
|
+
|
|
22
|
+
### Full Install (recommended for customisation)
|
|
23
|
+
|
|
24
|
+
#### macOS / Linux
|
|
12
25
|
|
|
13
26
|
```bash
|
|
14
27
|
git clone https://github.com/flonat/claude-research.git
|
|
@@ -16,7 +29,7 @@ cd claude-research
|
|
|
16
29
|
./scripts/setup.sh
|
|
17
30
|
```
|
|
18
31
|
|
|
19
|
-
|
|
32
|
+
#### Windows (PowerShell)
|
|
20
33
|
|
|
21
34
|
```powershell
|
|
22
35
|
git clone https://github.com/flonat/claude-research.git
|
|
@@ -24,6 +37,8 @@ cd claude-research
|
|
|
24
37
|
.\scripts\setup.ps1
|
|
25
38
|
```
|
|
26
39
|
|
|
40
|
+
The git clone gives you a local copy you can fully customise — edit `.context/profile.md`, `CLAUDE.md`, and workflows to match your research.
|
|
41
|
+
|
|
27
42
|
### Update
|
|
28
43
|
|
|
29
44
|
```bash
|
package/docs/getting-started.md
CHANGED
|
@@ -84,7 +84,21 @@ Python is required for several hooks (context monitor, compact save/restore) and
|
|
|
84
84
|
|
|
85
85
|
## Installation
|
|
86
86
|
|
|
87
|
-
###
|
|
87
|
+
### Quick Install (npm)
|
|
88
|
+
|
|
89
|
+
If you have Node.js 18+ installed:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
npx flonat-research
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
This downloads the package, runs the setup script, and symlinks skills, agents, hooks, and rules into `~/.claude/`. Good for trying it out quickly.
|
|
96
|
+
|
|
97
|
+
> **Note:** The npm install places files inside `node_modules/`. For full customisation (editing context files, adding your own skills), use the git clone method below.
|
|
98
|
+
|
|
99
|
+
### Full Install (recommended for customisation)
|
|
100
|
+
|
|
101
|
+
#### macOS / Linux
|
|
88
102
|
|
|
89
103
|
```bash
|
|
90
104
|
git clone https://github.com/flonat/claude-research.git
|
|
@@ -92,7 +106,7 @@ cd claude-research
|
|
|
92
106
|
./scripts/setup.sh
|
|
93
107
|
```
|
|
94
108
|
|
|
95
|
-
|
|
109
|
+
#### Windows
|
|
96
110
|
|
|
97
111
|
Open **PowerShell** (not Command Prompt) and run:
|
|
98
112
|
|
|
@@ -114,6 +128,16 @@ The setup script creates links in `~/.claude/` so Claude Code can find your skil
|
|
|
114
128
|
4. Checks that Python, uv, Git, and LaTeX are installed
|
|
115
129
|
5. Creates `log/` directories for session continuity
|
|
116
130
|
|
|
131
|
+
### Update
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# macOS/Linux: pull latest, then re-link without overwriting settings
|
|
135
|
+
git pull && ./scripts/setup.sh --update
|
|
136
|
+
|
|
137
|
+
# Windows (PowerShell):
|
|
138
|
+
git pull; .\scripts\setup.ps1 -Update
|
|
139
|
+
```
|
|
140
|
+
|
|
117
141
|
## Linux Notes
|
|
118
142
|
|
|
119
143
|
Linux is the most straightforward platform — hooks run natively and paths work out of the box. A few things to check:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flonat-research",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Claude Code infrastructure for academic research — skills, agents, hooks, and rules for LaTeX, bibliography, proofreading, and project management workflows.",
|
|
5
5
|
"author": "Florian Burnat",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"hooks"
|
|
23
23
|
],
|
|
24
24
|
"bin": {
|
|
25
|
-
"
|
|
25
|
+
"flonat-research": "scripts/setup.sh"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
|
-
"postinstall": "echo '\\nRun: npx
|
|
28
|
+
"postinstall": "echo '\\nRun: npx flonat-research\\nto create symlinks for skills, agents, hooks, and rules.\\n'",
|
|
29
29
|
"setup": "bash scripts/setup.sh"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|