A rich, colorful status line for Claude Code that shows model info, context usage, git branch, and more — right in your terminal.
I hereby claim:
- I am arazabishov on github.
- I am arazabishov (https://keybase.io/arazabishov) on keybase.
- I have a public key ASAIi1cUH8tVzVgsF2m41HVXeJmq5bn-X6C9OJwymz23rwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.Target; | |
| import static java.lang.annotation.ElementType.METHOD; | |
| import static java.lang.annotation.RetentionPolicy.RUNTIME; | |
| @Target(METHOD) | |
| @Retention(RUNTIME) | |
| public @interface CaptureScreenshots { | |
| String before() default ""; |