agent-hustle-demo 1.0.1

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.
Files changed (60) hide show
  1. package/README.md +429 -0
  2. package/dist/HustleChat-BC9wvWVA.d.ts +90 -0
  3. package/dist/HustleChat-BcrKkkyn.d.cts +90 -0
  4. package/dist/browser/hustle-react.js +14854 -0
  5. package/dist/browser/hustle-react.js.map +1 -0
  6. package/dist/components/index.cjs +3141 -0
  7. package/dist/components/index.cjs.map +1 -0
  8. package/dist/components/index.d.cts +20 -0
  9. package/dist/components/index.d.ts +20 -0
  10. package/dist/components/index.js +3112 -0
  11. package/dist/components/index.js.map +1 -0
  12. package/dist/hooks/index.cjs +845 -0
  13. package/dist/hooks/index.cjs.map +1 -0
  14. package/dist/hooks/index.d.cts +6 -0
  15. package/dist/hooks/index.d.ts +6 -0
  16. package/dist/hooks/index.js +838 -0
  17. package/dist/hooks/index.js.map +1 -0
  18. package/dist/hustle-Kj0X8qXC.d.cts +193 -0
  19. package/dist/hustle-Kj0X8qXC.d.ts +193 -0
  20. package/dist/index-ChUsRBwL.d.ts +152 -0
  21. package/dist/index-DE1N7C3W.d.cts +152 -0
  22. package/dist/index-DuPFrMZy.d.cts +214 -0
  23. package/dist/index-kFIdHjNw.d.ts +214 -0
  24. package/dist/index.cjs +3746 -0
  25. package/dist/index.cjs.map +1 -0
  26. package/dist/index.d.cts +271 -0
  27. package/dist/index.d.ts +271 -0
  28. package/dist/index.js +3697 -0
  29. package/dist/index.js.map +1 -0
  30. package/dist/providers/index.cjs +844 -0
  31. package/dist/providers/index.cjs.map +1 -0
  32. package/dist/providers/index.d.cts +5 -0
  33. package/dist/providers/index.d.ts +5 -0
  34. package/dist/providers/index.js +838 -0
  35. package/dist/providers/index.js.map +1 -0
  36. package/package.json +80 -0
  37. package/src/components/AuthStatus.tsx +352 -0
  38. package/src/components/ConnectButton.tsx +421 -0
  39. package/src/components/HustleChat.tsx +1273 -0
  40. package/src/components/MarkdownContent.tsx +431 -0
  41. package/src/components/index.ts +15 -0
  42. package/src/hooks/index.ts +40 -0
  43. package/src/hooks/useEmblemAuth.ts +27 -0
  44. package/src/hooks/useHustle.ts +36 -0
  45. package/src/hooks/usePlugins.ts +135 -0
  46. package/src/index.ts +142 -0
  47. package/src/plugins/index.ts +48 -0
  48. package/src/plugins/migrateFun.ts +211 -0
  49. package/src/plugins/predictionMarket.ts +411 -0
  50. package/src/providers/EmblemAuthProvider.tsx +319 -0
  51. package/src/providers/HustleProvider.tsx +540 -0
  52. package/src/providers/index.ts +6 -0
  53. package/src/styles/index.ts +2 -0
  54. package/src/styles/tokens.ts +447 -0
  55. package/src/types/auth.ts +85 -0
  56. package/src/types/hustle.ts +217 -0
  57. package/src/types/index.ts +49 -0
  58. package/src/types/plugin.ts +180 -0
  59. package/src/utils/index.ts +122 -0
  60. package/src/utils/pluginRegistry.ts +375 -0
@@ -0,0 +1,20 @@
1
+ export { A as AuthStatus, b as AuthStatusProps, C as ConnectButton, a as ConnectButtonProps, H as HustleChat, c as HustleChatProps } from '../HustleChat-BcrKkkyn.cjs';
2
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
+ import 'react';
4
+ import '../hustle-Kj0X8qXC.cjs';
5
+ import 'hustle-incognito';
6
+
7
+ /**
8
+ * MarkdownContent - Renders markdown using marked + highlight.js
9
+ *
10
+ * Uses marked for markdown parsing (lightweight, reliable)
11
+ * Uses highlight.js for code block syntax highlighting
12
+ * Adds copy and "Open in Emblem AI" buttons to code blocks
13
+ */
14
+ interface MarkdownContentProps {
15
+ content: string;
16
+ className?: string;
17
+ }
18
+ declare function MarkdownContent({ content, className }: MarkdownContentProps): react_jsx_runtime.JSX.Element;
19
+
20
+ export { MarkdownContent, type MarkdownContentProps };
@@ -0,0 +1,20 @@
1
+ export { A as AuthStatus, b as AuthStatusProps, C as ConnectButton, a as ConnectButtonProps, H as HustleChat, c as HustleChatProps } from '../HustleChat-BC9wvWVA.js';
2
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
+ import 'react';
4
+ import '../hustle-Kj0X8qXC.js';
5
+ import 'hustle-incognito';
6
+
7
+ /**
8
+ * MarkdownContent - Renders markdown using marked + highlight.js
9
+ *
10
+ * Uses marked for markdown parsing (lightweight, reliable)
11
+ * Uses highlight.js for code block syntax highlighting
12
+ * Adds copy and "Open in Emblem AI" buttons to code blocks
13
+ */
14
+ interface MarkdownContentProps {
15
+ content: string;
16
+ className?: string;
17
+ }
18
+ declare function MarkdownContent({ content, className }: MarkdownContentProps): react_jsx_runtime.JSX.Element;
19
+
20
+ export { MarkdownContent, type MarkdownContentProps };