@morphllm/subagents 0.1.3 → 0.1.5

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/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @morphllm/subagents
2
+ * subagents
3
3
  *
4
4
  * Modular AI subagents for document processing.
5
5
  *
@@ -10,10 +10,10 @@
10
10
  * @example
11
11
  * ```typescript
12
12
  * // Import specific subagent
13
- * import { DocxClient, DocxAgent } from '@morphllm/subagents/docx';
13
+ * import { DocxClient, DocxAgent } from 'subagents/docx';
14
14
  *
15
15
  * // Or import everything
16
- * import { DocxClient, DocxAgent } from '@morphllm/subagents';
16
+ * import { DocxClient, DocxAgent } from 'subagents';
17
17
  *
18
18
  * // Use the client directly
19
19
  * const client = new DocxClient();
package/src/pdf/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @morphllm/subagents/pdf
2
+ * subagents/pdf
3
3
  *
4
4
  * PDF form filling subagent (coming soon).
5
5
  *