@nahisaho/katashiro 0.1.0
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/dist/analyzer.d.ts.map +1 -0
- package/dist/collector.d.ts.map +1 -0
- package/dist/core.d.ts.map +1 -0
- package/dist/feedback.d.ts.map +1 -0
- package/dist/generator.d.ts.map +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/knowledge.d.ts.map +1 -0
- package/package.json +77 -0
- package/src/analyzer.ts +2 -0
- package/src/collector.ts +2 -0
- package/src/core.ts +2 -0
- package/src/feedback.ts +2 -0
- package/src/generator.ts +2 -0
- package/src/index.ts +27 -0
- package/src/knowledge.ts +2 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"analyzer.d.ts","sourceRoot":"","sources":["../src/analyzer.ts"],"names":[],"mappings":"AACA,cAAc,8BAA8B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"collector.d.ts","sourceRoot":"","sources":["../src/collector.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AACA,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feedback.d.ts","sourceRoot":"","sources":["../src/feedback.ts"],"names":[],"mappings":"AACA,cAAc,8BAA8B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../src/generator.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,IAAI,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGtG,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,eAAe,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAGtI,OAAO,KAAK,QAAQ,MAAM,8BAA8B,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,YAAY,EAAE,gBAAgB,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AAG/I,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAG3J,OAAO,KAAK,SAAS,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAG5H,OAAO,KAAK,QAAQ,MAAM,8BAA8B,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,eAAe,EAAE,cAAc,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @nahisaho/katashiro - All-in-one package
|
|
2
|
+
// Re-exports all KATASHIRO packages for convenient installation
|
|
3
|
+
// Core - Result types, Logger, utilities
|
|
4
|
+
export * as core from '@nahisaho/katashiro-core';
|
|
5
|
+
export { ok, err, isOk, isErr, Logger, generateId } from '@nahisaho/katashiro-core';
|
|
6
|
+
// Collector - Web scraping, API, feeds
|
|
7
|
+
export * as collector from '@nahisaho/katashiro-collector';
|
|
8
|
+
export { WebScraper, APIClient, FeedReader, WebSearchClient, MediaExtractor, YouTubeTranscript } from '@nahisaho/katashiro-collector';
|
|
9
|
+
// Analyzer - Text analysis, entities, topics
|
|
10
|
+
export * as analyzer from '@nahisaho/katashiro-analyzer';
|
|
11
|
+
export { TextAnalyzer, EntityExtractor, TopicModeler, RelationAnalyzer, QualityScorer, StructureAnalyzer } from '@nahisaho/katashiro-analyzer';
|
|
12
|
+
// Generator - Reports, summaries, presentations
|
|
13
|
+
export * as generator from '@nahisaho/katashiro-generator';
|
|
14
|
+
export { ReportGenerator, SummaryGenerator, PresentationGenerator, CitationGenerator, TemplateEngine, ExportService } from '@nahisaho/katashiro-generator';
|
|
15
|
+
// Knowledge - Knowledge graph management
|
|
16
|
+
export * as knowledge from '@nahisaho/katashiro-knowledge';
|
|
17
|
+
export { KnowledgeGraph, GraphQuery, GraphPersistence, GraphVisualization, GraphSync } from '@nahisaho/katashiro-knowledge';
|
|
18
|
+
// Feedback - User feedback and learning
|
|
19
|
+
export * as feedback from '@nahisaho/katashiro-feedback';
|
|
20
|
+
export { FeedbackCollector, FeedbackStorage, LearningEngine, PatternDetector, AdaptiveRecommender } from '@nahisaho/katashiro-feedback';
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"knowledge.d.ts","sourceRoot":"","sources":["../src/knowledge.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nahisaho/katashiro",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "KATASHIRO - VS Code Agent Mode向け情報収集・分析・生成システム(オールインワンパッケージ)",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./core": {
|
|
14
|
+
"types": "./dist/core.d.ts",
|
|
15
|
+
"import": "./dist/core.js"
|
|
16
|
+
},
|
|
17
|
+
"./collector": {
|
|
18
|
+
"types": "./dist/collector.d.ts",
|
|
19
|
+
"import": "./dist/collector.js"
|
|
20
|
+
},
|
|
21
|
+
"./analyzer": {
|
|
22
|
+
"types": "./dist/analyzer.d.ts",
|
|
23
|
+
"import": "./dist/analyzer.js"
|
|
24
|
+
},
|
|
25
|
+
"./generator": {
|
|
26
|
+
"types": "./dist/generator.d.ts",
|
|
27
|
+
"import": "./dist/generator.js"
|
|
28
|
+
},
|
|
29
|
+
"./knowledge": {
|
|
30
|
+
"types": "./dist/knowledge.d.ts",
|
|
31
|
+
"import": "./dist/knowledge.js"
|
|
32
|
+
},
|
|
33
|
+
"./feedback": {
|
|
34
|
+
"types": "./dist/feedback.d.ts",
|
|
35
|
+
"import": "./dist/feedback.js"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsc",
|
|
40
|
+
"test": "echo \"No tests for meta package\""
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"katashiro",
|
|
44
|
+
"vscode",
|
|
45
|
+
"agent",
|
|
46
|
+
"ai",
|
|
47
|
+
"research",
|
|
48
|
+
"analysis",
|
|
49
|
+
"generation",
|
|
50
|
+
"knowledge-graph"
|
|
51
|
+
],
|
|
52
|
+
"author": "nahisaho",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://github.com/nahisaho/katashiro.git",
|
|
57
|
+
"directory": "packages/katashiro"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://github.com/nahisaho/katashiro#readme",
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/nahisaho/katashiro/issues"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@nahisaho/katashiro-core": "^0.1.0",
|
|
68
|
+
"@nahisaho/katashiro-collector": "^0.1.0",
|
|
69
|
+
"@nahisaho/katashiro-analyzer": "^0.1.0",
|
|
70
|
+
"@nahisaho/katashiro-generator": "^0.1.0",
|
|
71
|
+
"@nahisaho/katashiro-knowledge": "^0.1.0",
|
|
72
|
+
"@nahisaho/katashiro-feedback": "^0.1.0"
|
|
73
|
+
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=20.0.0"
|
|
76
|
+
}
|
|
77
|
+
}
|
package/src/analyzer.ts
ADDED
package/src/collector.ts
ADDED
package/src/core.ts
ADDED
package/src/feedback.ts
ADDED
package/src/generator.ts
ADDED
package/src/index.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// @nahisaho/katashiro - All-in-one package
|
|
2
|
+
// Re-exports all KATASHIRO packages for convenient installation
|
|
3
|
+
|
|
4
|
+
// Core - Result types, Logger, utilities
|
|
5
|
+
export * as core from '@nahisaho/katashiro-core';
|
|
6
|
+
export { Result, ok, err, isOk, isErr, Logger, LogLevel, generateId } from '@nahisaho/katashiro-core';
|
|
7
|
+
|
|
8
|
+
// Collector - Web scraping, API, feeds
|
|
9
|
+
export * as collector from '@nahisaho/katashiro-collector';
|
|
10
|
+
export { WebScraper, APIClient, FeedReader, WebSearchClient, MediaExtractor, YouTubeTranscript } from '@nahisaho/katashiro-collector';
|
|
11
|
+
|
|
12
|
+
// Analyzer - Text analysis, entities, topics
|
|
13
|
+
export * as analyzer from '@nahisaho/katashiro-analyzer';
|
|
14
|
+
export { TextAnalyzer, EntityExtractor, TopicModeler, RelationAnalyzer, QualityScorer, StructureAnalyzer } from '@nahisaho/katashiro-analyzer';
|
|
15
|
+
|
|
16
|
+
// Generator - Reports, summaries, presentations
|
|
17
|
+
export * as generator from '@nahisaho/katashiro-generator';
|
|
18
|
+
export { ReportGenerator, SummaryGenerator, PresentationGenerator, CitationGenerator, TemplateEngine, ExportService } from '@nahisaho/katashiro-generator';
|
|
19
|
+
|
|
20
|
+
// Knowledge - Knowledge graph management
|
|
21
|
+
export * as knowledge from '@nahisaho/katashiro-knowledge';
|
|
22
|
+
export { KnowledgeGraph, GraphQuery, GraphPersistence, GraphVisualization, GraphSync } from '@nahisaho/katashiro-knowledge';
|
|
23
|
+
|
|
24
|
+
// Feedback - User feedback and learning
|
|
25
|
+
export * as feedback from '@nahisaho/katashiro-feedback';
|
|
26
|
+
export { FeedbackCollector, FeedbackStorage, LearningEngine, PatternDetector, AdaptiveRecommender } from '@nahisaho/katashiro-feedback';
|
|
27
|
+
|
package/src/knowledge.ts
ADDED
package/tsconfig.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "NodeNext",
|
|
5
|
+
"moduleResolution": "NodeNext",
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"declarationMap": true,
|
|
8
|
+
"sourceMap": true,
|
|
9
|
+
"outDir": "./dist",
|
|
10
|
+
"rootDir": "./src",
|
|
11
|
+
"strict": true,
|
|
12
|
+
"esModuleInterop": true,
|
|
13
|
+
"skipLibCheck": true,
|
|
14
|
+
"forceConsistentCasingInFileNames": true
|
|
15
|
+
},
|
|
16
|
+
"include": ["src/**/*"],
|
|
17
|
+
"exclude": ["node_modules", "dist"]
|
|
18
|
+
}
|