@axiom-lattice/examples-deep_research 1.0.14 → 1.0.17
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +28 -0
- package/dist/index.js +579 -94
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/src/agents/data_agent/index.ts +298 -99
- package/src/agents/data_agent/skills/analysis-methodology/SKILL.md +73 -0
- package/src/agents/data_agent/skills/analysis-methodology.ts +73 -0
- package/src/agents/data_agent/skills/analyst/SKILL.md +105 -0
- package/src/agents/data_agent/skills/analyst.ts +100 -0
- package/src/agents/data_agent/skills/data-visualization/SKILL.md +77 -0
- package/src/agents/data_agent/skills/data-visualization.ts +77 -0
- package/src/agents/data_agent/skills/infographic-creator/SKILL.md +337 -0
- package/src/agents/data_agent/skills/infographic-creator.ts +344 -0
- package/src/agents/data_agent/skills/inventory-doctor/SKILL.md +61 -0
- package/src/agents/data_agent/skills/inventory-doctor.ts +47 -0
- package/src/agents/data_agent/skills/notebook-report/SKILL.md +81 -0
- package/src/agents/data_agent/skills/notebook-report.ts +82 -0
- package/src/agents/data_agent/skills/sql-query/SKILL.md +58 -0
- package/src/agents/data_agent/skills/sql-query.ts +58 -0
- package/src/agents/data_agent/skills/test/SKILL.md +9 -0
- package/src/agents/index.ts +1 -0
- package/src/agents/inventory_doctor/index.ts +53 -0
- package/src/agents/inventory_doctor/tools.ts +244 -0
- package/src/index.ts +102 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/examples-deep_research@1.0.
|
|
2
|
+
> @axiom-lattice/examples-deep_research@1.0.17 build /home/runner/work/agentic/agentic/examples/deep_research
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
[34mCLI[39m Target: es2020
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
13
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in
|
|
12
|
+
[32mCJS[39m [1mdist/index.js [22m[32m50.22 KB[39m
|
|
13
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m52.54 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 53ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 5443ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m13.00 B[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @axiom-lattice/examples-deep_research
|
|
2
2
|
|
|
3
|
+
## 1.0.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [773c03f]
|
|
8
|
+
- @axiom-lattice/pg-stores@1.0.5
|
|
9
|
+
- @axiom-lattice/protocols@2.1.10
|
|
10
|
+
- @axiom-lattice/gateway@2.1.21
|
|
11
|
+
- @axiom-lattice/core@2.1.16
|
|
12
|
+
|
|
13
|
+
## 1.0.16
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- dc2fb23: fix deps issue
|
|
18
|
+
|
|
19
|
+
## 1.0.15
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- ef0fb84: update lagger lattice
|
|
24
|
+
- 51c10d0: add data agent
|
|
25
|
+
- Updated dependencies [ef0fb84]
|
|
26
|
+
- @axiom-lattice/protocols@2.1.9
|
|
27
|
+
- @axiom-lattice/gateway@2.1.20
|
|
28
|
+
- @axiom-lattice/core@2.1.15
|
|
29
|
+
- @axiom-lattice/pg-stores@1.0.4
|
|
30
|
+
|
|
3
31
|
## 1.0.14
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|