I think this is not a problem of the SRFIs. Any SRFI may build upon
another one. E.g., by saying: "This SRFI extends SRFI 26 as follows
...".
It may be a problem of the implementation, though, because you
cannot simply import the macros of SRFI 26 and add a few features
programmatically. You'll have to rewrite the macro. But a future
SRFI may contain a solution to make such a composition of macros
directly possible.
You can implement things like these using SRFI 139, syntax
parameters. (You would have to replace _ with something looking like
a macro call, e.g. (x), though.)
This would make things like (is (square (x)) < (z) < (y))
possible, which would be standing for something like (lambda args
(< (square (first args)) (third args) (second args)).