@moskala/oneagent-core 0.4.1 → 0.4.3

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/types.ts DELETED
@@ -1,60 +0,0 @@
1
- export type AgentTarget = "claude" | "cursor" | "windsurf" | "opencode" | "copilot";
2
-
3
- export interface Config {
4
- version: 1;
5
- targets: Record<AgentTarget, boolean>;
6
- }
7
-
8
- export interface DetectedFile {
9
- relativePath: string;
10
- absolutePath: string;
11
- sizeBytes: number;
12
- modifiedAt: Date;
13
- content: string;
14
- }
15
-
16
- export interface RuleFile {
17
- name: string;
18
- path: string;
19
- }
20
-
21
- export interface CommandFile {
22
- name: string;
23
- path: string;
24
- }
25
-
26
- export interface SkillFile {
27
- name: string;
28
- path: string;
29
- description: string;
30
- mode: "ask" | "edit" | "agent";
31
- content: string;
32
- }
33
-
34
- export interface SymlinkEntry {
35
- symlinkPath: string;
36
- target: string;
37
- label: string;
38
- }
39
-
40
- export interface SymlinkCheck extends SymlinkEntry {
41
- exists: boolean;
42
- valid: boolean;
43
- }
44
-
45
- export interface StatusResult {
46
- symlinks: SymlinkCheck[];
47
- generatedFiles: GeneratedFileCheck[];
48
- opencode: OpenCodeCheck;
49
- }
50
-
51
- export interface GeneratedFileCheck {
52
- path: string;
53
- exists: boolean;
54
- upToDate: boolean;
55
- }
56
-
57
- export interface OpenCodeCheck {
58
- exists: boolean;
59
- valid: boolean;
60
- }
File without changes