@helpfeel/cosense-cli 1.14.1 → 1.14.2
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 +2 -2
- package/package.json +4 -4
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @helpfeel/cosense-cli
|
|
2
2
|
|
|
3
|
-
Cosenseのページを読み・調べ・編集するAgent Skill
|
|
3
|
+
Cosenseのページを読み・調べ・編集するAgent Skillとそのハーネス
|
|
4
4
|
|
|
5
5
|
## Install Agent Skill
|
|
6
6
|
|
|
@@ -34,7 +34,7 @@ npx skills update cosense
|
|
|
34
34
|
|
|
35
35
|
## Install CLI
|
|
36
36
|
|
|
37
|
-
Skill
|
|
37
|
+
SkillはこのCLIをハーネスとして使います。Skillの実行に必要です
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
40
|
npm install -g @helpfeel/cosense-cli
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helpfeel/cosense-cli",
|
|
3
|
-
"version": "1.14.
|
|
4
|
-
"description": "Cosense (旧Scrapbox) のページを読み・調べ・編集するAgent Skill
|
|
3
|
+
"version": "1.14.2",
|
|
4
|
+
"description": "Cosense (旧Scrapbox) のページを読み・調べ・編集するAgent Skillのハーネス",
|
|
5
5
|
"homepage": "https://github.com/helpfeel/cosense-cli",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "24.13.3",
|
|
31
31
|
"npm-run-all": "4.1.5",
|
|
32
|
-
"oxfmt": "0.
|
|
33
|
-
"oxlint": "1.
|
|
32
|
+
"oxfmt": "0.64.0",
|
|
33
|
+
"oxlint": "1.79.0",
|
|
34
34
|
"typescript": "7.0.2"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
package/src/cli.ts
CHANGED
|
@@ -254,7 +254,7 @@ const commands: Record<string, CommandSpec> = {
|
|
|
254
254
|
const renderTopLevelHelp = (): string => {
|
|
255
255
|
const nameWidth = Math.max(...Object.keys(commands).map(n => n.length));
|
|
256
256
|
const lines = [
|
|
257
|
-
`cosense v${version} - Cosenseのページを読み・調べ・編集する
|
|
257
|
+
`cosense v${version} - Cosenseのページを読み・調べ・編集するAgent Skillのハーネス`,
|
|
258
258
|
'',
|
|
259
259
|
'Usage:',
|
|
260
260
|
' cosense <command> [args...]',
|