runshot 0.0.1

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.
Files changed (3) hide show
  1. package/LICENSE.md +57 -0
  2. package/README.md +18 -0
  3. package/package.json +10 -0
package/LICENSE.md ADDED
@@ -0,0 +1,57 @@
1
+ # Functional Source License, Version 1.1, MIT Future License
2
+
3
+ ## Abbreviation
4
+ FSL-1.1-MIT
5
+
6
+ ## Notice
7
+ Copyright 2026 Ariel Diaz
8
+
9
+ ## Terms and Conditions
10
+
11
+ ### Licensor ("We")
12
+ The party offering the Software under these Terms and Conditions.
13
+
14
+ ### The Software
15
+ The "Software" is each version of the software that we make available under these Terms and Conditions, as indicated by our inclusion of these Terms and Conditions with the Software.
16
+
17
+ ### License Grant
18
+ Subject to your compliance with this License Grant and the Patents, Redistribution and Trademark clauses below, we hereby grant you the right to use, copy, modify, create derivative works, publicly perform, publicly display and redistribute the Software for any Permitted Purpose identified below.
19
+
20
+ ### Permitted Purpose
21
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use means making the Software available to others in a commercial product or service that:
22
+
23
+ 1. substitutes for the Software;
24
+ 2. substitutes for any other product or service we offer using the Software that exists as of the date we make the Software available; or
25
+ 3. offers the same or substantially similar functionality as the Software.
26
+
27
+ Permitted Purposes specifically include using the Software:
28
+
29
+ 1. for your internal use and access;
30
+ 2. for non-commercial education;
31
+ 3. for non-commercial research; and
32
+ 4. in connection with professional services that you provide to a licensee using the Software in accordance with these Terms and Conditions.
33
+
34
+ ### Patents
35
+ To the extent your use for a Permitted Purpose would necessarily infringe our patents, the license grant above includes a license under our patents. If you make a claim against any party that the Software infringes or contributes to the infringement of any patent, then your patent license to the Software ends immediately.
36
+
37
+ ### Redistribution
38
+ The Terms and Conditions apply to all copies, modifications and derivatives of the Software.
39
+
40
+ If you redistribute any copies, modifications or derivatives of the Software, you must include a copy of or a link to these Terms and Conditions and not remove any copyright notices provided in or with the Software.
41
+
42
+ ### Disclaimer
43
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
44
+
45
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
46
+
47
+ ### Trademarks
48
+ Except for displaying the License Details and identifying us as the origin of the Software, you have no right under these Terms and Conditions to use our trademarks, trade names, service marks or product names.
49
+
50
+ ## Grant of Future License
51
+ We hereby irrevocably grant you an additional license to use the Software under the MIT license that is effective on the second anniversary of the date we make the Software available. On or after that date, you may use the Software under the MIT license, in which case the following will apply:
52
+
53
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
54
+
55
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
56
+
57
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # runshot
2
+
3
+ **One-shot a complete visual record of any web app** — every product screen,
4
+ email template, and social/link preview, plus a video — then sync it to a Figma
5
+ flow doc. Config-driven, so the same flow works across apps and doubles as a
6
+ deterministic CI gate.
7
+
8
+ > **Status: early.** runshot is currently developed inside
9
+ > [`arieldiaz/ariel-skills`](https://github.com/arieldiaz/ariel-skills) (as the
10
+ > `runshot` plugin). This repo is its future standalone home; the code will be
11
+ > extracted here once it stabilizes. ⭐ to follow along.
12
+
13
+ ## License
14
+
15
+ [Fair Source](https://fair.io) — **FSL-1.1-MIT** (Functional Source License).
16
+ Free for any use including internal and commercial; the only thing reserved is
17
+ offering runshot itself as a competing hosted service. Each release converts to
18
+ the standard MIT license two years after it ships. See [`LICENSE.md`](LICENSE.md).
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "runshot",
3
+ "version": "0.0.1",
4
+ "description": "One-shot a complete visual record of any web app — every screen, email, and social preview, plus a video — then sync it to a Figma flow doc. Early: developed in github.com/arieldiaz/ariel-skills.",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "author": "Ariel Diaz",
7
+ "homepage": "https://github.com/arieldiaz/runshot",
8
+ "repository": { "type": "git", "url": "git+https://github.com/arieldiaz/runshot.git" },
9
+ "keywords": ["screenshots", "product", "design", "qa", "e2e", "playwright", "figma", "video", "social-preview"]
10
+ }