-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsources.toml
More file actions
172 lines (146 loc) · 4.88 KB
/
sources.toml
File metadata and controls
172 lines (146 loc) · 4.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# forestage sources — declares where importable objects come from.
#
# `forestage sync` reads this file and pulls objects from each source.
# Images are siphoned to the global portrait cache, not into this repo.
#
# Resolution: later sources override earlier ones for same-named objects.
# ---------------------------------------------------------------------------
# Global settings
# ---------------------------------------------------------------------------
[portraits]
# Portraits are stored globally, not in the repo.
# The sync command copies images here; the CLI resolves them at runtime.
cache_dir = "$XDG_DATA_HOME/forestage/portraits" # default: ~/.local/share/forestage/portraits
sizes = ["small", "medium"] # which sizes to keep (skip large/original to save space)
# ---------------------------------------------------------------------------
# Pennyfarthing dist (base 45 themes — already imported)
# ---------------------------------------------------------------------------
[[source]]
name = "pennyfarthing-dist"
type = "themes"
from = "path:../penny-orc/pennyfarthing/pennyfarthing-dist/personas/themes"
glob = "*.yaml"
dest = "personas/themes/"
[[source]]
name = "pennyfarthing-dist-portraits"
type = "portraits"
from = "path:../penny-orc/pennyfarthing/pennyfarthing-dist/personas/portraits"
glob = "{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
# ---------------------------------------------------------------------------
# Pennyfarthing theme packs (npm)
# ---------------------------------------------------------------------------
[[source]]
name = "themes-comedy"
type = "themes"
from = "npm:@pennyfarthing/themes-comedy"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-comedy-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-comedy"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
[[source]]
name = "themes-literary"
type = "themes"
from = "npm:@pennyfarthing/themes-literary"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-literary-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-literary"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
[[source]]
name = "themes-mythology-fantasy"
type = "themes"
from = "npm:@pennyfarthing/themes-mythology-fantasy"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-mythology-fantasy-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-mythology-fantasy"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
[[source]]
name = "themes-prestige-tv"
type = "themes"
from = "npm:@pennyfarthing/themes-prestige-tv"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-prestige-tv-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-prestige-tv"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
[[source]]
name = "themes-realistic"
type = "themes"
from = "npm:@pennyfarthing/themes-realistic"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-realistic-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-realistic"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
[[source]]
name = "themes-scifi"
type = "themes"
from = "npm:@pennyfarthing/themes-scifi"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-scifi-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-scifi"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
[[source]]
name = "themes-superheroes"
type = "themes"
from = "npm:@pennyfarthing/themes-superheroes"
glob = "themes/*.yaml"
dest = "personas/themes/"
[[source]]
name = "themes-superheroes-portraits"
type = "portraits"
from = "npm:@pennyfarthing/themes-superheroes"
glob = "portraits/{theme-slug}/{size}/*.png"
dest = "$portraits.cache_dir"
# ---------------------------------------------------------------------------
# Pennyfarthing local overrides (installed per-project)
# ---------------------------------------------------------------------------
[[source]]
name = "pennyfarthing-local"
type = "themes"
from = "path:../penny-orc/.pennyfarthing/personas/themes"
glob = "*.yaml"
dest = "personas/themes/"
# ---------------------------------------------------------------------------
# Future: bmad workflows, gates, agent definitions
# ---------------------------------------------------------------------------
# [[source]]
# name = "bmad-workflows"
# type = "workflows"
# from = "git:github.com/1898andCo/bmad#main"
# glob = "workflows/*.yaml"
# dest = "workflows/"
# [[source]]
# name = "multiclaude-agents"
# type = "agents"
# from = "git:github.com/arcavenae/multiclaude#main"
# glob = "agents/*.yaml"
# dest = "agents/"
# [[source]]
# name = "gastown-gates"
# type = "gates"
# from = "git:github.com/arcavenae/gastown#main"
# glob = "gates/*.yaml"
# dest = "gates/"