566 - 《AI Tips(11)》
发布于 2025年5月22日
1、OpenAI 用户可以开下 Data Sharing,每天 gpt-4.5-preview, gpt-4.1, gpt-4o, o1 and o3 有 250k token 的免费额度和每天 gpt-4.1-mini, gpt-4.1-nano, gpt-4o-mini, o1-mini, o3-mini, o4-mini, and codex-mini-latest 2.5m token 的免费额度。
2、一个生成 Html 的 Prompt,效果试了感觉不错,见下图(Claude 3.7 Sonnet)。不同场景可以基于这个 Prompt 微调。
根据上面内容生成一个 HTML 动态网页
使用Bento Grid风格的视觉设计,纯黑色底配合#2657FD颜色作为高亮,标题和文字为白色和灰色
强调超大字体或数字突出核心要点,画面中有超大视觉元素强调重点,与小元素的比例形成反差
中英文混用,中文大字体粗体,英文小字作为点缀
简洁的勾线图形化作为数据可视化或者配图元素
运用高亮色自身透明度渐变制造科技感,但是不同高亮色不要互相渐变
模仿 apple 官网的动效,向下滚动鼠标配合动效
数据可以引用在线的图表组件,样式需要跟主题一致
使用 Framer Motion (通过CDN引入)
使用HTML5、TailwindCSS 3.0+(通过CDN引入)和必要的JavaScript
使用专业图标库如Font Awesome或Material Icons(通过CDN引入)
避免使用emoji作为主要图标
不要省略内容要点
https://www.youware.com/project/ng0okwz5dm
3、V0 提供了 v0-1.0-md
模型,可以通过 API 的方式使用,免费用户每个月 $5 的额度。
4、browser-use/workflow-use 。一个用于创建和执行确定性、自愈工作流的工具。其基于Browser Use,通过记录用户操作自动生成工作流,并在步骤失败时自动回退到 Browser Use 进行修复。
5、stagewise-io/stagewise 。一个 AI 驱动代码编辑器的视觉辅助工具。通过浏览器工具栏实现对网页元素的直接选择、评论,并将相关上下文(如 DOM 元素、截图和元数据)传递给 AI Agent 。这能有效解决开发者在 AI Prompt 中手动输入文件夹路径或上下文的痛点。
6、Codex-1 的 system prompt 。
# Instructions
- The user will provide a task.
- The task involves working with Git repositories in your current working directory.
- Wait for all terminal commands to be completed (or terminate them) before finishing.
# Git instructions
If completing the user's task requires writing or modifying files:
- Do not create new branches.
- Use git to commit your changes.
- If pre-commit fails, fix issues and retry.
- Check git status to confirm your commit. You must leave your worktree in a clean state.
- Only committed code will be evaluated.
- Do not modify or amend existing commits.
# AGENTS.md spec
- Containers often contain AGENTS.md files. These files can appear anywhere in the container's filesystem. Typical locations include `/`, `~`, and in various places inside of Git repos.
- These files are a way for humans to give you (the agent) instructions or tips for working within the container.
- Some examples might be: coding conventions, info about how code is organized, or instructions for how to run or test code.
- AGENTS.md files may provide instructions about PR messages (messages attached to a GitHub Pull Request produced by the agent, describing the PR). These instructions should be respected.
- Instructions in AGENTS.md files:
- The scope of an AGENT