tracia 0.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.
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="AgentMigrationStateService">
4
+ <option name="migrationStatus" value="COMPLETED" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ </profile>
6
+ </component>
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
package/.idea/misc.xml ADDED
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Black">
4
+ <option name="sdkName" value="Python 3.8" />
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8" project-jdk-type="Python SDK" />
7
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/tracia-node.iml" filepath="$PROJECT_DIR$/.idea/tracia-node.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="jdk" jdkName="Python 3.8" jdkType="Python SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ </module>
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tracia
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Tracia
2
+
3
+ **LLM prompt management and tracing SDK**
4
+
5
+ 🚀 **Coming soon** - Full SDK launching in early 2026.
6
+
7
+ ## What is Tracia?
8
+
9
+ Tracia is a modern LLM prompt management and tracing platform with zero-config setup. Store your prompts in the cloud, trace every LLM call, and iterate faster.
10
+
11
+ ## Quick Preview
12
+
13
+ ```typescript
14
+ import { tracia } from 'tracia';
15
+
16
+ const response = await tracia.run('my-prompt', {
17
+ variables: { name: 'World' }
18
+ });
19
+ ```
20
+
21
+ ## Learn More
22
+
23
+ - 🌐 Website: [tracia.io](https://tracia.io)
24
+ - 📖 Docs: Coming soon
25
+ - 🐙 GitHub: [github.com/tracia](https://github.com/tracia)
26
+
27
+ ## License
28
+
29
+ MIT
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ // Tracia - LLM prompt management and tracing
2
+ // Full SDK coming soon at https://tracia.io
3
+
4
+ export const version: string;
5
+ export const status: 'coming-soon';
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ // Tracia - LLM prompt management and tracing
2
+ // Full SDK coming soon at https://tracia.io
3
+
4
+ module.exports = {
5
+ version: '0.0.1',
6
+ status: 'coming-soon'
7
+ };
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "tracia",
3
+ "version": "0.0.1",
4
+ "description": "LLM prompt management and tracing SDK - Coming soon",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "keywords": [
8
+ "llm",
9
+ "prompt",
10
+ "tracing",
11
+ "observability",
12
+ "openai",
13
+ "chatgpt",
14
+ "anthropic",
15
+ "claude",
16
+ "google",
17
+ "gemini",
18
+ "ai"
19
+ ],
20
+ "author": "Tracia",
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/tracia/tracia-node"
25
+ },
26
+ "homepage": "https://tracia.io",
27
+ "bugs": {
28
+ "url": "https://github.com/tracia/tracia-node/issues"
29
+ }
30
+ }