mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* add documentation for ai agents * docs: consolidate CLAUDE.md and CONTRIBUTING.md, add style guidelines - Refactor CLAUDE.md to reference CONTRIBUTING.md for build/test/format info - Expand CONTRIBUTING.md with comprehensive build targets, env vars, and testing - Add code style guidelines section with conventional commits - Standardize SDK prettier config to use single quotes (matching web) - Add project-level Claude Code settings to disable co-author attribution * style(sdk): apply prettier with single quotes Run prettier across sdk/base and sdk/package to apply the standardized quote style (single quotes matching web). * docs: add USER.md for per-developer TODO filtering - Add agents/USER.md to .gitignore (contains user identifier) - Document session startup flow in CLAUDE.md: - Create USER.md if missing, prompting for identifier - Filter TODOs by @username tags - Offer relevant TODOs on session start * docs: add i18n documentation task to agent TODOs * docs: document i18n ID patterns in core/ Add agents/i18n-patterns.md covering rust-i18n setup, translation file format, t!() macro usage, key naming conventions, and locale selection. Remove completed TODO item and add reference in CLAUDE.md. * chore: clarify that all builds work on any OS with Docker
85 lines
3.1 KiB
TypeScript
85 lines
3.1 KiB
TypeScript
export class ComposableRegex {
|
|
readonly regex: RegExp
|
|
constructor(regex: RegExp | string) {
|
|
if (regex instanceof RegExp) {
|
|
this.regex = regex
|
|
} else {
|
|
this.regex = new RegExp(regex)
|
|
}
|
|
}
|
|
asExpr(): string {
|
|
return `(${this.regex.source})`
|
|
}
|
|
matches(): string {
|
|
return `^${this.regex.source}$`
|
|
}
|
|
contains(): string {
|
|
return this.regex.source
|
|
}
|
|
}
|
|
|
|
export const escapeLiteral = (str: string) =>
|
|
str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
|
|
// https://ihateregex.io/expr/ipv6/
|
|
export const ipv6 = new ComposableRegex(
|
|
/(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))/,
|
|
)
|
|
|
|
// https://ihateregex.io/expr/ipv4/
|
|
export const ipv4 = new ComposableRegex(
|
|
/(\b25[0-5]|\b2[0-4][0-9]|\b[01]?[0-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}/,
|
|
)
|
|
|
|
export const hostname = new ComposableRegex(
|
|
/(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])/,
|
|
)
|
|
|
|
export const localHostname = new ComposableRegex(
|
|
/[-a-zA-Z0-9@:%._\+~#=]{1,256}\.local/,
|
|
)
|
|
|
|
export const torHostname = new ComposableRegex(
|
|
/[-a-zA-Z0-9@:%._\+~#=]{1,256}\.onion/,
|
|
)
|
|
|
|
// https://ihateregex.io/expr/url/
|
|
export const url = new ComposableRegex(
|
|
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()!@:%_\+.~#?&\/\/=]*)/,
|
|
)
|
|
|
|
export const localUrl = new ComposableRegex(
|
|
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.local\b([-a-zA-Z0-9()!@:%_\+.~#?&\/\/=]*)/,
|
|
)
|
|
|
|
export const torUrl = new ComposableRegex(
|
|
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.onion\b([-a-zA-Z0-9()!@:%_\+.~#?&\/\/=]*)/,
|
|
)
|
|
|
|
// https://ihateregex.io/expr/ascii/
|
|
export const ascii = new ComposableRegex(/[ -~]*/)
|
|
|
|
export const domain = new ComposableRegex(/[A-Za-z0-9.-]+\.[A-Za-z]{2,}/)
|
|
|
|
// https://www.regular-expressions.info/email.html
|
|
export const email = new ComposableRegex(`[A-Za-z0-9._%+-]+@${domain.asExpr()}`)
|
|
|
|
export const emailWithName = new ComposableRegex(
|
|
`${email.asExpr()}|([^<]*<${email.asExpr()}>)`,
|
|
)
|
|
|
|
//https://rgxdb.com/r/1NUN74O6
|
|
export const base64 = new ComposableRegex(
|
|
/(?:[a-zA-Z0-9+\/]{4})*(?:|(?:[a-zA-Z0-9+\/]{3}=)|(?:[a-zA-Z0-9+\/]{2}==)|(?:[a-zA-Z0-9+\/]{1}===))/,
|
|
)
|
|
|
|
//https://rgxdb.com/r/1NUN74O6
|
|
export const base64Whitespace = new ComposableRegex(
|
|
/(?:([a-zA-Z0-9+\/]\s*){4})*(?:|(?:([a-zA-Z0-9+\/]\s*){3}=)|(?:([a-zA-Z0-9+\/]\s*){2}==)|(?:([a-zA-Z0-9+\/]\s*){1}===))/,
|
|
)
|
|
|
|
export const pem = (label: string) =>
|
|
new ComposableRegex(
|
|
`-----BEGIN ${escapeLiteral(label)}-----\r?\n[a-zA-Z0-9+/\n\r=]*?\r?\n-----END ${escapeLiteral(label)}-----`,
|
|
)
|