-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
377 lines (367 loc) · 13.4 KB
/
index.html
File metadata and controls
377 lines (367 loc) · 13.4 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate, max-age=0" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>mikuproject</title>
<style>
:root {
--bg: #f4f8fb;
--bg-accent: #eaf1f6;
--surface: #fbfdff;
--surface-2: #eef4f8;
--text: #16202a;
--heading: #17364d;
--muted: #4d5d6a;
--primary: #2f6ea5;
--primary-strong: #22577f;
--on-primary: #ffffff;
--secondary-bg: #e3edf5;
--secondary-text: #28465f;
--outline: #d6e1ea;
--outline-2: #c1d1dd;
--code-bg: #edf3f8;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "BIZ UDPGothic", "Noto Sans JP", "Hiragino Sans", "Segoe UI", sans-serif;
background:
radial-gradient(circle at top left, rgba(47, 110, 165, 0.16), transparent 28%),
linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 100%);
color: var(--text);
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
}
.card {
width: min(860px, 100%);
background: var(--surface);
border: 1px solid var(--outline);
border-radius: 24px;
padding: 30px;
box-shadow:
0 20px 44px rgba(20, 46, 68, 0.10),
inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
h1 {
margin: 0 0 12px;
font-size: clamp(2rem, 5vw, 2.9rem);
line-height: 1.1;
letter-spacing: -0.02em;
color: var(--heading);
}
h2 {
margin: 0 0 10px;
font-size: 1.18rem;
line-height: 1.25;
color: var(--heading);
}
p {
margin: 0 0 14px;
color: var(--muted);
line-height: 1.75;
}
ul,
ol {
margin: 0 0 16px;
padding-left: 1.25rem;
color: var(--muted);
line-height: 1.68;
}
code {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
background: var(--code-bg);
color: var(--secondary-text);
padding: 0.12rem 0.38rem;
border-radius: 8px;
font-size: 0.92em;
}
.eyebrow {
display: inline-block;
margin-bottom: 12px;
padding: 0.34rem 0.72rem;
border-radius: 999px;
background: rgba(47, 110, 165, 0.12);
color: var(--heading);
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.lead {
font-size: 1.02rem;
color: #425767;
}
.md-app-meta {
margin: 0 0 20px;
font-size: 0.9rem;
color: var(--muted);
}
.link-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 10px;
}
.link-btn,
.link-btn-secondary {
display: inline-block;
text-decoration: none;
padding: 0.82rem 1.35rem;
border-radius: 999px;
font-weight: 700;
transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
}
.link-btn {
background: var(--primary);
color: var(--on-primary);
box-shadow: 0 10px 24px rgba(47, 110, 165, 0.24);
}
.link-btn-secondary {
background: var(--secondary-bg);
color: var(--secondary-text);
border: 1px solid var(--outline-2);
}
.link-btn:hover,
.link-btn-secondary:hover {
transform: translateY(-1px);
}
.link-btn:hover {
background: var(--primary-strong);
box-shadow: 0 12px 26px rgba(34, 87, 127, 0.26);
}
.link-btn-secondary:hover {
background: #d9e7f1;
border-color: #b2c6d5;
}
.divider {
border: 0;
border-top: 1px solid var(--outline);
margin: 24px 0;
}
.panel-grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
@media (min-width: 760px) {
.panel-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.panel {
padding: 16px;
background: var(--surface-2);
border: 1px solid var(--outline);
border-radius: 18px;
}
.panel p:last-child,
.panel ul:last-child,
.panel ol:last-child {
margin-bottom: 0;
}
.sub {
margin-top: 14px;
font-size: 0.9rem;
color: var(--muted);
}
.gallery {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
margin-top: 18px;
}
@media (min-width: 720px) {
.gallery {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.shot-card {
margin: 0;
padding: 14px;
background: var(--surface-2);
border: 1px solid var(--outline);
border-radius: 20px;
box-shadow: 0 10px 28px rgba(20, 46, 68, 0.08);
}
.shot-frame {
display: block;
width: 100%;
border-radius: 12px;
border: 1px solid var(--outline-2);
overflow: hidden;
background: #ffffff;
}
.shot-frame img {
display: block;
width: 100%;
height: auto;
}
.shot-card figcaption {
margin-top: 10px;
font-size: 0.92rem;
color: var(--muted);
line-height: 1.55;
}
</style>
</head>
<body>
<main class="card">
<div class="eyebrow">Local Browser Tool</div>
<h1>mikuproject</h1>
<div class="md-app-meta">Updated: 2026-05-01</div>
<section aria-label="What is this">
<h2>What is this?</h2>
<p class="lead">
<code>mikuproject</code> は、<code>MS Project XML</code> を意味の基軸に、生成AIとの往復を支えるために設計されたローカル HTML ツールです。WBS の草案作成から再編集・再取込、人向けの可視化・帳票化までを、ひとつの流れとして扱えます。
</p>
<ul>
<li>WBS の草案作成から再編集・再取込、人向けの可視化・帳票化までを、ひとつの流れとして扱えます。</li>
<li><code>MS Project XML</code> を意味の基軸として保ちます。</li>
<li>生成AIと人の往復に適した表現変換 / 再取込 / 介在を支えます。</li>
<li><a href="https://github.com/igapyon/mikuproject-skills">mikuproject-skills</a> から Agent Skills 版も利用できます。</li>
<li>人が読むための可視化と、WBS 帳票・SVG を含む成果物出力を提供します。</li>
<li>Web ブラウザさえあればインストール不要・ネットワーク不要で利用できます。</li>
</ul>
</section>
<hr class="divider" />
<section aria-label="Features">
<h2>Features</h2>
<div class="panel-grid">
<div class="panel">
<ul>
<li>生成AIに渡すためのプロジェクト概要・工程詳細・一式データを出力できます。</li>
<li>生成AIが返した WBS 素案や Patch JSON を取り込んで反映できます。</li>
<li><code>MS Project XML</code> を読み込み、内部モデルへ変換して確認できます。</li>
<li><code>MS Project XML</code> を再生成できます。</li>
</ul>
</div>
<div class="panel">
<ul>
<li>日次・週次のガント表現や月次カレンダーの <code>SVG</code> を出力できます。</li>
<li><code>Project / Tasks / Resources / Assignments / Calendars</code> workbook を、構造を保ったまま <code>XLSX / JSON</code> で入出力できます。</li>
<li>人が読むための <code>WBS Excel ブック (.xlsx)</code> と <code>WBS Markdown</code> を出力できます。</li>
<li><code>CSV + ParentID</code>、Mermaid、<code>ALL</code> ZIP を出力できます。</li>
</ul>
</div>
</div>
</section>
<hr class="divider" />
<section aria-label="Use cases">
<h2>Use Cases</h2>
<ul>
<li>生成AIとの対話で WBS 草案を作成し、<code>mikuproject</code> に取り込んで、人と生成AIが確認・修正しながら、帳票や可視化成果物として仕上げたい。</li>
<li>既存の <code>MS Project XML</code> を <code>mikuproject</code> に取り込み、内容を確認しながら、<code>WBS Excel ブック (.xlsx)</code> や日次・週次のガント表現や月次カレンダーの <code>SVG</code>、<code>Markdown</code> などの人向け成果物へ展開したい。</li>
<li><code>mikuproject</code> で扱う WBS やプロジェクト情報を生成AI向けに表現変換し、生成AIが返した結果を再び取り込みながら、人と生成AIがレビュー・調整・再利用しやすい形へ整えたい。</li>
</ul>
</section>
<hr class="divider" />
<section aria-label="How to use">
<h2>How to use</h2>
<ol>
<li>Web ブラウザで <code>mikuproject.html</code> を開きます。</li>
<li><code>Load from file</code>、<code>サンプル</code>、<code>生成AI連携</code> から <code>MS Project XML / XLSX / workbook JSON / .editjson / CSV + ParentID</code> を入力します。</li>
<li>内部モデル、validation、<code>Daily / Weekly / Monthly Calendar</code> preview を確認します。</li>
<li>必要に応じて <code>MS Project XML / XLSX / WBS XLSX / WBS Markdown / workbook JSON / CSV + ParentID / Daily SVG / Weekly SVG / Monthly Calendar SVG / Mermaid / .editjson / ALL ZIP</code> を保存します。</li>
</ol>
<div class="link-row">
<a class="link-btn" href="./mikuproject.html">Open mikuproject</a>
<a class="link-btn-secondary" href="./README.md">README</a>
<a class="link-btn-secondary" href="https://github.com/igapyon/mikuproject-skills">Agent Skills</a>
<a class="link-btn-secondary" href="./docs/architecture.md">Architecture</a>
<a class="link-btn-secondary" href="./docs/spec.md">Spec</a>
</div>
</section>
<hr class="divider" />
<section aria-label="Screenshots">
<h2>Screenshots</h2>
<div class="gallery">
<figure class="shot-card">
<div class="shot-frame">
<img src="./docs/screenshots/screen01.png" alt="mikuproject Input screen" />
</div>
<figcaption>
Input 画面。<code>Load from file</code>、<code>サンプル</code>、<code>生成AI連携</code> から入力を受け付けます。
</figcaption>
</figure>
<figure class="shot-card">
<div class="shot-frame">
<img src="./docs/screenshots/screen02.png" alt="mikuproject Overview screen" />
</div>
<figcaption>
Overview 画面。<code>Daily / Weekly / Monthly Calendar</code> preview を確認します。
</figcaption>
</figure>
<figure class="shot-card">
<div class="shot-frame">
<img src="./docs/screenshots/screen02c.png" alt="mikuproject Overview monthly calendar screen" />
</div>
<figcaption>
Overview 画面。<code>Monthly Calendar</code> preview で月間カレンダー表示を確認できます。
</figcaption>
</figure>
<figure class="shot-card">
<div class="shot-frame">
<img src="./docs/screenshots/screen03.png" alt="mikuproject Output screen" />
</div>
<figcaption>
Output 画面。<code>MS Project XML</code>、<code>XLSX</code>、<code>JSON</code>、<code>CSV</code>、<code>WBS XLSX</code>、<code>WBS Markdown</code>、Mermaid、<code>SVG</code>、<code>.editjson</code>、<code>ALL</code> ZIP を保存できます。
</figcaption>
</figure>
<figure class="shot-card">
<div class="shot-frame">
<img src="./docs/screenshots/excel01.png" alt="WBS Excel workbook output" />
</div>
<figcaption>
人が読むための <code>WBS Excel ブック (.xlsx)</code> 帳票出力の例です。
</figcaption>
</figure>
<figure class="shot-card">
<div class="shot-frame">
<img src="./docs/screenshots/markdown01.png" alt="WBS Markdown output" />
</div>
<figcaption>
<code>WBS Markdown</code> 出力の例です。<code>WBS ツリー</code> と <code>WBS テーブル</code> を含みます。
</figcaption>
</figure>
</div>
</section>
</main>
<script>
(() => {
const selector = 'a[href^="./mikuproject.html"]';
const buildVersionStamp = () => {
const d = new Date();
return (
d.getFullYear().toString() +
String(d.getMonth() + 1).padStart(2, "0") +
String(d.getDate()).padStart(2, "0") +
String(d.getHours()).padStart(2, "0") +
String(d.getMinutes()).padStart(2, "0")
);
};
const stampAndGo = (anchor) => {
const u = new URL(anchor.getAttribute("href"), location.href);
u.searchParams.set("v", buildVersionStamp());
anchor.setAttribute("href", u.pathname + u.search);
};
document.addEventListener("click", (ev) => {
const a = ev.target.closest(selector);
if (!a) return;
stampAndGo(a);
}, true);
document.addEventListener("auxclick", (ev) => {
if (ev.button !== 1) return;
const a = ev.target.closest(selector);
if (!a) return;
stampAndGo(a);
}, true);
})();
</script>
</body>
</html>