@alessandroraffa/tangyr 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.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # tangyr
2
+
3
+ A Software Engineering Discipline for Agent Coding.
4
+
5
+ This package is not yet released. See [github.com/araffa/tangyr](https://github.com/araffa/tangyr).
package/bin/tangyr.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log('tangyr v0.0.1 — not yet released. See https://github.com/araffa/tangyr');
3
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@alessandroraffa/tangyr",
3
+ "version": "0.0.1",
4
+ "description": "A Software Engineering Discipline for Agent Coding",
5
+ "keywords": [
6
+ "agent-coding",
7
+ "software-engineering",
8
+ "ai-agents",
9
+ "llm"
10
+ ],
11
+ "author": "Alessandro Raffa",
12
+ "license": "SEE LICENSE IN LICENSE",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/araffa/tangyr"
16
+ },
17
+ "homepage": "https://github.com/araffa/tangyr",
18
+ "bin": {
19
+ "tangyr": "./bin/tangyr.js"
20
+ }
21
+ }