@nahisaho/katashiro 0.1.10 → 0.1.12
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/CLAUDE.md +21 -0
- package/package.json +8 -8
package/CLAUDE.md
CHANGED
|
@@ -321,6 +321,27 @@ async function solveBusinessProblem(domain: string, question: string) {
|
|
|
321
321
|
npm install @nahisaho/katashiro
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
+
### CLI使用法
|
|
325
|
+
|
|
326
|
+
```bash
|
|
327
|
+
# Web検索
|
|
328
|
+
npx katashiro search "検索クエリ"
|
|
329
|
+
|
|
330
|
+
# Webスクレイピング
|
|
331
|
+
npx katashiro scrape https://example.com
|
|
332
|
+
|
|
333
|
+
# テキスト分析
|
|
334
|
+
npx katashiro analyze "分析するテキスト"
|
|
335
|
+
|
|
336
|
+
# エンティティ抽出
|
|
337
|
+
npx katashiro extract "テキスト"
|
|
338
|
+
|
|
339
|
+
# 要約
|
|
340
|
+
npx katashiro summarize "長いテキスト" --length 300
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
### プログラムから使用
|
|
344
|
+
|
|
324
345
|
```typescript
|
|
325
346
|
import * as katashiro from '@nahisaho/katashiro';
|
|
326
347
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nahisaho/katashiro",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "KATASHIRO - VS Code Agent Mode向け情報収集・分析・生成システム(オールインワンパッケージ)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -76,13 +76,13 @@
|
|
|
76
76
|
"url": "https://github.com/nahisaho/katashiro/issues"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@nahisaho/katashiro-analyzer": "^0.1.
|
|
80
|
-
"@nahisaho/katashiro-collector": "^0.1.
|
|
81
|
-
"@nahisaho/katashiro-core": "^0.1.
|
|
82
|
-
"@nahisaho/katashiro-feedback": "^0.1.
|
|
83
|
-
"@nahisaho/katashiro-generator": "^0.1.
|
|
84
|
-
"@nahisaho/katashiro-knowledge": "^0.1.
|
|
85
|
-
"@nahisaho/katashiro-mcp-server": "^0.1.
|
|
79
|
+
"@nahisaho/katashiro-analyzer": "^0.1.6",
|
|
80
|
+
"@nahisaho/katashiro-collector": "^0.1.6",
|
|
81
|
+
"@nahisaho/katashiro-core": "^0.1.1",
|
|
82
|
+
"@nahisaho/katashiro-feedback": "^0.1.1",
|
|
83
|
+
"@nahisaho/katashiro-generator": "^0.1.6",
|
|
84
|
+
"@nahisaho/katashiro-knowledge": "^0.1.6",
|
|
85
|
+
"@nahisaho/katashiro-mcp-server": "^0.1.1",
|
|
86
86
|
"commander": "^12.1.0"
|
|
87
87
|
},
|
|
88
88
|
"engines": {
|