agentreel 0.1.0 → 0.1.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 (2) hide show
  1. package/package.json +9 -2
  2. package/src/CastVideo.tsx +18 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentreel",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Turn Claude Code sessions into viral demo videos",
5
5
  "bin": {
6
6
  "agentreel": "./bin/agentreel.mjs"
@@ -32,5 +32,12 @@
32
32
  "type": "git",
33
33
  "url": "git+https://github.com/islo-labs/agentreel.git"
34
34
  },
35
- "keywords": ["cli", "demo", "video", "claude", "agent", "remotion"]
35
+ "keywords": [
36
+ "cli",
37
+ "demo",
38
+ "video",
39
+ "claude",
40
+ "agent",
41
+ "remotion"
42
+ ]
36
43
  }
package/src/CastVideo.tsx CHANGED
@@ -101,6 +101,23 @@ export const CastVideo: React.FC<CastProps> = ({
101
101
  {/* Subtle animated glow blobs in background */}
102
102
  <AnimatedBackground frame={frame} duration={durationInFrames} />
103
103
 
104
+ {/* Global watermark — always visible */}
105
+ <div
106
+ style={{
107
+ position: "absolute",
108
+ bottom: 28,
109
+ width: "100%",
110
+ textAlign: "center",
111
+ zIndex: 5,
112
+ fontFamily: MONO,
113
+ fontSize: 12,
114
+ color: "rgba(255,255,255,0.18)",
115
+ letterSpacing: 2,
116
+ }}
117
+ >
118
+ made with ♥ by agentreel
119
+ </div>
120
+
104
121
  <MusicTrack />
105
122
 
106
123
  <Sequence durationInFrames={titleFrames}>
@@ -993,7 +1010,7 @@ const EndCard: React.FC<{ text: string; url?: string }> = ({ text, url }) => {
993
1010
  letterSpacing: 3,
994
1011
  }}
995
1012
  >
996
- MADE WITH AGENTREEL
1013
+ made with ♥ by agentreel
997
1014
  </div>
998
1015
  </AbsoluteFill>
999
1016
  );