@lion-lamb/thinktrace 1.0.8 → 1.0.10

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.
@@ -2,6 +2,7 @@
2
2
  var oracleAgent = {
3
3
  description: "Expert AI advisor with advanced reasoning capabilities for high-quality technical guidance, code reviews, architectural advice, and strategic planning",
4
4
  mode: "primary",
5
+ color: "#9B59B6",
5
6
  model: "openai/gpt-5.2",
6
7
  temperature: 0.1,
7
8
  tools: { write: false, edit: false },
@@ -57,11 +58,10 @@ var builtinAgents = {
57
58
  };
58
59
 
59
60
  // src/thinktrace.ts
61
+ console.log("hello thinktrace!");
60
62
  var ThinkTracePlugin = async (ctx) => {
61
63
  return {
62
64
  config: async (config) => {
63
- if (!config)
64
- return;
65
65
  config.agent = {
66
66
  ...config.agent,
67
67
  ...builtinAgents
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@lion-lamb/thinktrace",
3
- "version": "1.0.8",
4
- "main": "thinktrace.js",
5
- "module": "thinktrace.js",
3
+ "version": "1.0.10",
4
+ "main": "src/thinktrace.js",
5
+ "module": "src/thinktrace.js",
6
6
  "type": "module",
7
7
  "devDependencies": {
8
8
  "@types/bun": "latest"