-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
97 lines (73 loc) · 3.81 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Product Engineer Manifesto</title>
<link rel="stylesheet" href="/main.css">
<meta property="og:type" content="website">
<meta property="og:url" content="https://productengineer.org">
<meta property="og:title" content="Product Engineer Manifesto">
<meta property="og:description" content="Product Thinking and technical execution combined">
<meta property="og:image" content="https://productengineer.org/screenshot.png">
</head>
<body class="bg-white text-gray-900 font-sans p-8">
<div class="mx-auto max-w-xl space-y-5 md:py-8">
<header class="mb-8 text-center">
<h1 class="text-3xl font-bold md:tracking-wide">Product Engineer Manifesto</h1>
<div class="mt-2">
<a href="https://github.com/anttiviljami/product-engineer-manifesto" target="_blank">
<img class="inline-block" src="http://img.shields.io/:license-mit-blue.svg" />
</a>
<a href="https://productengineer-content.s3.eu-west-1.amazonaws.com/product-engineer-checklist.pdf?version=2024-11"
target="_blank">
<img class="inline-block" src="https://img.shields.io/badge/pdf-download-green" />
</a>
<a href="https://github.com/anttiviljami/product-engineer-manifesto" target="_blank">
<img class="inline-block" src="https://img.shields.io/github/stars/anttiviljami/product-engineer-manifesto" />
</a>
</div>
</header>
<p>It is our responsibility as builders to first seek to understand the problem, before
diving into solutions.</p>
<p>We concern ourselves with design, technical, and business domains;
taking an active part in each to shape the product and empower others to do the same.</p>
<p>Our craft combines <em>Product Thinking</em> with great technical execution.</p>
<p>We take great professional pride in the products we ship and refuse to
limit ourselves to technical-only roles in our teams.</p>
<h2 class="text-2xl font-bold tracking-wide" id="the-product-engineer-mindset">The Product Engineer Mindset</h2>
<p>In our work as <em>Product Engineers</em>, we have come to value:</p>
<ul class="list-disc space-y-1 pl-6">
<li><strong>Continuous delivery of working software</strong> over promises and estimations</li>
<li><strong>Asking why</strong> to understand the customer problem before diving into code</li>
<li><strong>Customer collaboration and feedback</strong> over tickets and second-hand knowledge</li>
<li><strong>Teamwork and communication</strong> over picking up tasks and working in isolation</li>
<li><strong>Testing the product ourselves</strong> over relying on others (especially our users) to find issues </li>
<li><strong>Domain knowledge and ownership</strong> over outsourcing strategic thinking to someone else</li>
</ul>
<ul class="text-center pt-4">
<li>
<a class="text-blue-800 underline"
href="https://productengineer-content.s3.eu-west-1.amazonaws.com/product-engineer-checklist.pdf?version=2024-11"
target="_blank">
Product Engineer Checklist (PDF)
</a>
</li>
</ul>
<footer class="text-center pt-4">
<div>
<a class="opacity-75 hover:opacity-100"
href="https://github.com/anttiviljami/product-engineer-manifesto?tab=readme-ov-file#signatures"
target="_blank">
<img class="inline-block w-10 h-10" src="https://img.icons8.com/material-sharp/96/000000/github.png"
alt="GitHub">
<p class="text-sm underline">
Star the Manifesto
</p>
</a>
</div>
</footer>
</div>
</body>
</html>