@auto-engineer/information-architect 0.6.5 → 0.7.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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +12 -14
- package/.turbo/turbo-type-check.log +4 -5
- package/CHANGELOG.md +12 -0
- package/dist/commands/generate-ia.d.ts +12 -45
- package/dist/commands/generate-ia.d.ts.map +1 -1
- package/dist/commands/generate-ia.js +29 -23
- package/dist/commands/generate-ia.js.map +1 -1
- package/dist/ia-agent.d.ts +22 -0
- package/dist/ia-agent.d.ts.map +1 -0
- package/dist/ia-agent.js +131 -0
- package/dist/ia-agent.js.map +1 -0
- package/dist/index.d.ts +13 -23
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -132
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/commands/generate-ia.ts +30 -26
- package/src/ia-agent.ts +152 -0
- package/src/index.ts +6 -154
- package/tsconfig.tsbuildinfo +1 -1
- package/.env +0 -7
- package/.turbo/turbo-format.log +0 -16
- package/.turbo/turbo-lint.log +0 -5
- package/dist/cli-manifest.d.ts +0 -3
- package/dist/cli-manifest.d.ts.map +0 -1
- package/dist/cli-manifest.js +0 -35
- package/dist/cli-manifest.js.map +0 -1
- package/src/cli-manifest.ts +0 -37
package/.turbo/turbo-format.log
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
> @auto-engineer/information-architect@0.6.5 format /Users/sam/WebstormProjects/top/auto-engineer/packages/information-architect
|
|
4
|
-
> prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore
|
|
5
|
-
|
|
6
|
-
CHANGELOG.md[2K[1G[90mCHANGELOG.md[39m 29ms (unchanged)
|
|
7
|
-
DEBUG.md[2K[1G[90mDEBUG.md[39m 3ms (unchanged)
|
|
8
|
-
package.json[2K[1G[90mpackage.json[39m 14ms (unchanged)
|
|
9
|
-
README.md[2K[1G[90mREADME.md[39m 58ms (unchanged)
|
|
10
|
-
src/auto-ux-schema.json[2K[1G[90msrc/auto-ux-schema.json[39m 6ms (unchanged)
|
|
11
|
-
src/cli-manifest.ts[2K[1G[90msrc/cli-manifest.ts[39m 7ms (unchanged)
|
|
12
|
-
src/commands/generate-ia.ts[2K[1G[90msrc/commands/generate-ia.ts[39m 17ms (unchanged)
|
|
13
|
-
src/generate-ia-schema.ts[2K[1G[90msrc/generate-ia-schema.ts[39m 8ms (unchanged)
|
|
14
|
-
src/index.ts[2K[1G[90msrc/index.ts[39m 6ms (unchanged)
|
|
15
|
-
src/types.ts[2K[1G[90msrc/types.ts[39m 1ms (unchanged)
|
|
16
|
-
tsconfig.json[2K[1G[90mtsconfig.json[39m 1ms (unchanged)
|
package/.turbo/turbo-lint.log
DELETED
package/dist/cli-manifest.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cli-manifest.d.ts","sourceRoot":"","sources":["../src/cli-manifest.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AA2BrE,eAAO,MAAM,YAAY,EAAE,WAM1B,CAAC"}
|
package/dist/cli-manifest.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import fs from 'fs';
|
|
2
|
-
import path from 'path';
|
|
3
|
-
import { fileURLToPath } from 'url';
|
|
4
|
-
import { generateIAManifest } from './commands/generate-ia.js';
|
|
5
|
-
// Get version from package.json
|
|
6
|
-
const getVersion = () => {
|
|
7
|
-
try {
|
|
8
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
9
|
-
const __dirname = path.dirname(__filename);
|
|
10
|
-
// In dev: src/cli-manifest.ts -> ../../package.json
|
|
11
|
-
// In dist: dist/cli-manifest.js -> ../package.json
|
|
12
|
-
const possiblePaths = [
|
|
13
|
-
path.join(__dirname, '..', 'package.json'), // dist build
|
|
14
|
-
path.join(__dirname, '..', '..', 'package.json'), // dev/src
|
|
15
|
-
];
|
|
16
|
-
for (const packageJsonPath of possiblePaths) {
|
|
17
|
-
if (fs.existsSync(packageJsonPath)) {
|
|
18
|
-
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
|
|
19
|
-
return packageJson.version;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
catch {
|
|
24
|
-
// Fall through
|
|
25
|
-
}
|
|
26
|
-
return 'unknown';
|
|
27
|
-
};
|
|
28
|
-
export const CLI_MANIFEST = {
|
|
29
|
-
category: '@auto-engineer/information-architect',
|
|
30
|
-
version: getVersion(),
|
|
31
|
-
commands: {
|
|
32
|
-
'generate:ia': generateIAManifest,
|
|
33
|
-
},
|
|
34
|
-
};
|
|
35
|
-
//# sourceMappingURL=cli-manifest.js.map
|
package/dist/cli-manifest.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cli-manifest.js","sourceRoot":"","sources":["../src/cli-manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE5D,gCAAgC;AAChC,MAAM,UAAU,GAAG,GAAW,EAAE;IAC9B,IAAI,CAAC;QACH,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAClD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;QAC3C,oDAAoD;QACpD,mDAAmD;QACnD,MAAM,aAAa,GAAG;YACpB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,cAAc,CAAC,EAAE,aAAa;YACzD,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC,EAAE,UAAU;SAC7D,CAAC;QAEF,KAAK,MAAM,eAAe,IAAI,aAAa,EAAE,CAAC;YAC5C,IAAI,EAAE,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC;gBACnC,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,eAAe,EAAE,OAAO,CAAC,CAAwB,CAAC;gBACjG,OAAO,WAAW,CAAC,OAAO,CAAC;YAC7B,CAAC;QACH,CAAC;IACH,CAAC;IAAC,MAAM,CAAC;QACP,eAAe;IACjB,CAAC;IACD,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAgB;IACvC,QAAQ,EAAE,sCAAsC;IAChD,OAAO,EAAE,UAAU,EAAE;IACrB,QAAQ,EAAE;QACR,aAAa,EAAE,kBAAkB;KAClC;CACF,CAAC"}
|
package/src/cli-manifest.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import fs from 'fs';
|
|
2
|
-
import path from 'path';
|
|
3
|
-
import { fileURLToPath } from 'url';
|
|
4
|
-
import type { CliManifest } from '@auto-engineer/cli/manifest-types';
|
|
5
|
-
import { generateIAManifest } from './commands/generate-ia';
|
|
6
|
-
|
|
7
|
-
// Get version from package.json
|
|
8
|
-
const getVersion = (): string => {
|
|
9
|
-
try {
|
|
10
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
11
|
-
const __dirname = path.dirname(__filename);
|
|
12
|
-
// In dev: src/cli-manifest.ts -> ../../package.json
|
|
13
|
-
// In dist: dist/cli-manifest.js -> ../package.json
|
|
14
|
-
const possiblePaths = [
|
|
15
|
-
path.join(__dirname, '..', 'package.json'), // dist build
|
|
16
|
-
path.join(__dirname, '..', '..', 'package.json'), // dev/src
|
|
17
|
-
];
|
|
18
|
-
|
|
19
|
-
for (const packageJsonPath of possiblePaths) {
|
|
20
|
-
if (fs.existsSync(packageJsonPath)) {
|
|
21
|
-
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8')) as { version: string };
|
|
22
|
-
return packageJson.version;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
} catch {
|
|
26
|
-
// Fall through
|
|
27
|
-
}
|
|
28
|
-
return 'unknown';
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export const CLI_MANIFEST: CliManifest = {
|
|
32
|
-
category: '@auto-engineer/information-architect',
|
|
33
|
-
version: getVersion(),
|
|
34
|
-
commands: {
|
|
35
|
-
'generate:ia': generateIAManifest,
|
|
36
|
-
},
|
|
37
|
-
};
|