-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (106 loc) · 6.5 KB
/
index.html
File metadata and controls
143 lines (106 loc) · 6.5 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
<html>
<link rel="stylesheet" type="text/css" href="./assets/standards.css" />
<script src="./assets/standards.js"></script>
<script src="./assets/sources.js"></script>
<script src="./assets/nav.js"></script>
<script src="./assets/tf.js" type="text/javascript"></script>
<script src="./assets/tf-universal-sentence-encoder.js" type="text/javascript"></script>
<script src="./assets/embedding_search.js"></script>
<body>
<h1>Gov Doc Summaries</h1>
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Overall Prompt</button>
<div class="accordion-content"><p>Using the included standards document, produce a document summary in simple direct and unambiguous language:</p>
<ul>
<li><p>List only the primary standards, guidelines, and requirements mentioned in the document.</p></li>
<li><p>Highlight sections that focus on security, accessibility, user experience, and compliance.</p></li>
<li><p>Each list item should be re-summarize into an even shorter result.</p></li>
</ul>
</div>
</div>
</div>
<br /><br />
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Punchline Prompt</button>
<div class="accordion-content"><p>In a single short sentence that can be used as an elevtor pitch, what is the purpose of this document and what is it trying to achieve? Please describe in simple plain language that a non-technical business person could understand. Simplify the purpose in single sentence leaving out introductory information like the title of the standard.</p>
<p>Generate a punchline summary for each of the following perspectives:</p>
<ul>
<li><p>DevOps</p></li>
<li><p>Designer</p></li>
<li><p>Developer</p></li>
<li><p>Project Manager</p></li>
</ul>
</div>
</div>
</div>
<br /><br />
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Keywords Prompt</button>
<div class="accordion-content"><p>Identify Keywords:</p>
<p>Extract specific words or phrases that capture the core ideas.</p>
<p>Focus on unique terms or concepts that are repeated or emphasized.</p>
<p>Consider the context and relevance of each keyword to the overall article.</p>
<p>Review and Refine:</p>
<p>Ensure the keywords are representative of the content.</p>
<p>Ensure the main themes or topics are included in the keywords.</p>
<p>Remove any overly broad or generic terms.</p>
<p>Respond with Final List: </p>
<p>Compile the refined list of up to 100 relevant keywords.</p>
<p>Output the keywords one per line.</p>
<p>Respond with only they keywords, with neither prefix, postfix, nor explanitory text.</p>
</div>
</div>
</div>
<br /><br />
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Actions.Devops Prompt</button>
<div class="accordion-content"><p>In practical terms for a web application, what minimal list of actions must be taken on a project to show compliance with standards? Each item should itself be short and brief. Ignore information and steps that are better serviced by a different perspective or a different role.</p>
<p>Consider things from only this one perspective:</p>
<p>a DevOps technician, who must design and manage infrastructure to support the application.</p>
</div>
</div>
</div>
<br /><br />
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Actions.Designer Prompt</button>
<div class="accordion-content"><p>In practical terms for a web application, what minimal list of actions must be taken on a project to show compliance with standards? Each item should itself be short and brief. Ignore information and steps that are better serviced by a different perspective or a different role.</p>
<p>Consider things from only this one perspective:</p>
<p>a Designer, who specializes in Human Centered Design and will be responsible for the User Experience and User Interface of the application.</p>
</div>
</div>
</div>
<br /><br />
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Actions.Developer Prompt</button>
<div class="accordion-content"><p>In practical terms for a web application, what minimal list of actions must be taken on a project to show compliance with standards? Each item should itself be short and brief. Ignore information and steps that are better serviced by a different perspective or a different role.</p>
<p>Consider things from only this one perspective:</p>
<p>a Developer, who specializes in implementing Drupal, who will have to implement the backend business logic speciifed for an application.</p>
</div>
</div>
</div>
<br /><br />
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">Actions.Project Manager Prompt</button>
<div class="accordion-content"><p>In practical terms for a web application, what minimal list of actions must be taken on a project to show compliance with standards? Each item should itself be short and brief. Ignore information and steps that are better serviced by a different perspective or a different role.</p>
<p>Consider things from only this one perspective:</p>
<p>a Project manager who will need to track and organize work and guide the client towards completing a task.</p>
</div>
</div>
</div>
<br /><br />
<div id="nav-menu" class="accordion" role="navigation" aria-label="Page Navigation">
<div class="accordion-item">
<button id="nav-menu-toggle" class="accordion-header"><span class="accordion-header-text">Standards</span><span class="accordion-header-icon"></span></button>
<div class="accordion-content"><ul id="nav-menu-standards"></ul></div>
</div>
</div>
<br /><br />
</body>
</html>