deepthinking-mcp 2.6.0 → 3.0.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/index.js CHANGED
@@ -2034,7 +2034,7 @@ var VisualExporter = class {
2034
2034
  * Export temporal timeline to visual format
2035
2035
  */
2036
2036
  exportTemporalTimeline(thought, options) {
2037
- const { format, colorScheme = "default", includeLabels = true } = options;
2037
+ const { format, includeLabels = true } = options;
2038
2038
  switch (format) {
2039
2039
  case "mermaid":
2040
2040
  return this.timelineToMermaidGantt(thought, includeLabels);
@@ -3009,32 +3009,32 @@ function exportToMarkdown(session) {
3009
3009
  return md;
3010
3010
  }
3011
3011
  function exportToLatex(session) {
3012
- let latex = `documentclass{article}
3012
+ let latex = `\\documentclass{article}
3013
3013
  `;
3014
- latex += ` itle{Thinking Session: ${session.id}}
3014
+ latex += `\\title{Thinking Session: ${session.id}}
3015
3015
  `;
3016
- latex += `\begin{document}
3016
+ latex += `\\begin{document}
3017
3017
  `;
3018
- latex += `maketitle
3018
+ latex += `\\maketitle
3019
3019
 
3020
3020
  `;
3021
- latex += `section{Session Details}
3021
+ latex += `\\section{Session Details}
3022
3022
  `;
3023
- latex += `Mode: ${session.mode}\\
3023
+ latex += `Mode: ${session.mode}\\\\
3024
3024
  `;
3025
- latex += `Status: ${session.status}\\
3025
+ latex += `Status: ${session.status}\\\\
3026
3026
 
3027
3027
  `;
3028
- latex += `section{Thoughts}
3028
+ latex += `\\section{Thoughts}
3029
3029
  `;
3030
3030
  for (const thought of session.thoughts) {
3031
- latex += `subsection{Thought ${thought.thoughtNumber}}
3031
+ latex += `\\subsection{Thought ${thought.thoughtNumber}}
3032
3032
  `;
3033
3033
  latex += `${thought.content}
3034
3034
 
3035
3035
  `;
3036
3036
  }
3037
- latex += `end{document}
3037
+ latex += `\\end{document}
3038
3038
  `;
3039
3039
  return latex;
3040
3040
  }